diff options
author | anushadasari <danush10@in.ibm.com> | 2019-11-19 15:48:26 +0530 |
---|---|---|
committer | steven stark <steven.stark@att.com> | 2019-12-04 18:52:05 +0000 |
commit | 7446edea30648a386343237f7adfd1a308740265 (patch) | |
tree | 8e6ef6333f74783c168703d0894d9b7cdcaff52f | |
parent | 36d53f7d93882052bcc39748fcb06fae9b51a1a1 (diff) |
Remove unnecessary check for pytest.skip
Issue-ID: VVP-288
Change-Id: I62c43cbc94fd8924eebd6594668829ffecb37801
Signed-off-by: anushadasari <danush10@in.ibm.com>
-rw-r--r-- | ice_validator/tests/test_neutron_port_fixed_ips_subnet.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/ice_validator/tests/test_neutron_port_fixed_ips_subnet.py b/ice_validator/tests/test_neutron_port_fixed_ips_subnet.py index 939bf5b..a6c9f91 100644 --- a/ice_validator/tests/test_neutron_port_fixed_ips_subnet.py +++ b/ice_validator/tests/test_neutron_port_fixed_ips_subnet.py @@ -38,7 +38,6 @@ # import re -import pytest from tests.utils.network_roles import get_network_type_from_port @@ -100,8 +99,6 @@ def test_external_subnet_format(yaml_file): @validates("R-84123", "R-76160") def test_neutron_port_internal_fixed_ips_subnet_in_base(yaml_files): base_path = get_base_template_from_yaml_files(yaml_files) - if not base_path: - pytest.skip("No base module detected") base_heat = load_yaml(base_path) base_outputs = base_heat.get("outputs") or {} nested_template_paths = get_nested_files(yaml_files) |