diff --git a/device-types/Extreme Networks/X150-24p.yaml b/device-types/Extreme Networks/X150-24p.yaml index 044216fb5..39217e134 100644 --- a/device-types/Extreme Networks/X150-24p.yaml +++ b/device-types/Extreme Networks/X150-24p.yaml @@ -7,6 +7,7 @@ is_full_depth: false weight: 5.5 weight_unit: kg airflow: right-to-left +front_image: true comments: '[Extreme Networks X150-24p Datasheet](https://documentation.extremenetworks.com/summit_16/GUID-0CD347F4-C441-47C3-9D5B-3BA8649DB783.shtml)' power-ports: - name: DCE2 diff --git a/device-types/Extreme Networks/X150-24t.yaml b/device-types/Extreme Networks/X150-24t.yaml index 28c65a252..008fdbe8a 100644 --- a/device-types/Extreme Networks/X150-24t.yaml +++ b/device-types/Extreme Networks/X150-24t.yaml @@ -7,6 +7,7 @@ is_full_depth: false weight: 4.8 weight_unit: kg airflow: right-to-left +front_image: true comments: '[Extreme Networks X150-24t Datasheet](https://documentation.extremenetworks.com/summit_16/GUID-A48D9BB9-E0EC-41DB-AE56-F2615275A38A.shtml)' power-ports: - name: DCE2 diff --git a/device-types/Extreme Networks/X150-48t.yaml b/device-types/Extreme Networks/X150-48t.yaml index aa259a762..7a5088d09 100644 --- a/device-types/Extreme Networks/X150-48t.yaml +++ b/device-types/Extreme Networks/X150-48t.yaml @@ -7,6 +7,7 @@ is_full_depth: false weight: 5.5 weight_unit: kg airflow: right-to-left +front_image: true comments: '[Extreme Networks X150-48t Datasheet](https://documentation.extremenetworks.com/summit_16/GUID-05C591DD-EB29-4D08-B5D5-F21C4AEFD200.shtml)' power-ports: - name: DCE2 diff --git a/tests/definitions_test.py b/tests/definitions_test.py index 52dbef205..ebd81783c 100644 --- a/tests/definitions_test.py +++ b/tests/definitions_test.py @@ -159,6 +159,14 @@ def test_definitions(file_path, schema, change_type): # Load YAML data from file definition = yaml.load(content, Loader=DecimalSafeLoader) + + # Check for non-ASCII characters + non_ascii_chars = [char for char in content if ord(char) > 127] + if non_ascii_chars: + pytest.fail( + f"{file_path} contains non-ASCII characters: {', '.join(set(non_ascii_chars))}", + pytrace=False + ) # Validate YAML definition against the supplied schema try: