aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsteven stark <steven.stark@att.com>2019-11-12 21:44:44 +0000
committerGerrit Code Review <gerrit@onap.org>2019-11-12 21:44:44 +0000
commitb58293a120bb2c4a2d77296fe9c1c5a2247b3799 (patch)
tree2d642cafcc8b055d7e37467844010f6b378b6673
parent74436fb509d03ea56feb50afa083c9c393fd95c5 (diff)
parent3c835f9d56a892aeed5930187a236db0e0944191 (diff)
Merge "Skip unnecessary resource/pytest.skip check"
-rw-r--r--ice_validator/tests/test_vm_type_case.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/ice_validator/tests/test_vm_type_case.py b/ice_validator/tests/test_vm_type_case.py
index 3ecd8de..db4646c 100644
--- a/ice_validator/tests/test_vm_type_case.py
+++ b/ice_validator/tests/test_vm_type_case.py
@@ -65,8 +65,6 @@ resources:
import collections
import re
-import pytest
-
from .structures import Heat
from .helpers import validates
@@ -101,8 +99,6 @@ def test_vm_type_case(yaml_file):
"""
heat = Heat(filepath=yaml_file)
resources = heat.resources
- if not resources:
- pytest.skip("No resources found")
bad = collections.defaultdict(list)
for rid, resource in resources.items():
vm_type = heat.get_vm_type(rid, resource=resource)