aboutsummaryrefslogtreecommitdiffstats
path: root/ice_validator/tests/test_availability_zone.py
diff options
context:
space:
mode:
Diffstat (limited to 'ice_validator/tests/test_availability_zone.py')
-rw-r--r--ice_validator/tests/test_availability_zone.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/ice_validator/tests/test_availability_zone.py b/ice_validator/tests/test_availability_zone.py
index 7feefc9..aee6890 100644
--- a/ice_validator/tests/test_availability_zone.py
+++ b/ice_validator/tests/test_availability_zone.py
@@ -43,6 +43,7 @@ import re
import pytest
from tests import cached_yaml as yaml
+from tests.utils import nested_files
from .helpers import validates
@@ -55,6 +56,9 @@ def test_availability_zone_naming(yaml_file):
Make sure all availability zones are properly formatted
"""
+ if nested_files.file_is_a_nested_template(yaml_file):
+ pytest.skip("test does not apply to nested files")
+
with open(yaml_file) as fh:
yml = yaml.load(fh)