From: anushadasari Date: Tue, 19 Nov 2019 10:18:26 +0000 (+0530) Subject: Remove unnecessary check for pytest.skip X-Git-Tag: 6.0.0~14 X-Git-Url: https://gerrit.onap.org/r/gitweb?p=vvp%2Fvalidation-scripts.git;a=commitdiff_plain;h=7446edea30648a386343237f7adfd1a308740265 Remove unnecessary check for pytest.skip Issue-ID: VVP-288 Change-Id: I62c43cbc94fd8924eebd6594668829ffecb37801 Signed-off-by: anushadasari --- 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)