aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsteven stark <steven.stark@att.com>2019-11-18 16:31:58 +0000
committerGerrit Code Review <gerrit@onap.org>2019-11-18 16:31:58 +0000
commit0c4e64d87728b89aa9cd4d41d738f5bfe64ceee3 (patch)
tree2305781c835498bd66a279e4e1d7668aadd09ae4
parent2c04e79bb65a4ffcf4db5d443d6cc3e3ea3f10fe (diff)
parent5706da0c7f430c01a0cebb534f1a965ee9b5cca7 (diff)
Merge "Remove unnecessary check for pytest.skip"
-rw-r--r--ice_validator/tests/test_network_format.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/ice_validator/tests/test_network_format.py b/ice_validator/tests/test_network_format.py
index 98fcd37..b291c53 100644
--- a/ice_validator/tests/test_network_format.py
+++ b/ice_validator/tests/test_network_format.py
@@ -38,7 +38,6 @@
#
from itertools import chain
-import pytest
import re
from tests import cached_yaml as yaml
@@ -78,10 +77,6 @@ def test_network_has_subnet(yaml_file):
with open(yaml_file) as fh:
yml = yaml.load(fh)
- # skip if resources are not defined
- if "resources" not in yml:
- pytest.skip("No resources specified in the heat template")
-
networks = []
for k, v in yml["resources"].items():