From 88dfa658da3b885ad790d6745442c6c98787fed2 Mon Sep 17 00:00:00 2001 From: Shivam Thakur <70829776+shivamcandela@users.noreply.github.com> Date: Fri, 20 May 2022 12:10:25 +0530 Subject: [PATCH] Wifi 7868 (#554) * WIFI-7868 : Added test_resources in ow_sanity_lf Signed-off-by: shivam * WIFI-7868 Updated the markers for features Signed-off-by: shivam * WIFI-7868: Updated feature regression markers Signed-off-by: shivam --- .../dfs_test/wpa2_personal/dfs_20MHz/test_dfs_20_bridge.py | 2 +- .../dfs_test/wpa2_personal/dfs_40MHz/test_dfs_40_bridge.py | 2 +- .../dfs_test/wpa2_personal/dfs_80MHz/test_dfs_80_bridge.py | 2 +- .../basic/endurance_test/bridge_mode/test_ap_stability.py | 3 ++- .../multi_psk/wpa2_security/test_multipsk_basic_wpa2.py | 2 +- .../multi_psk/wpa_security/test_multipsk_basic_wpa.py | 6 ++++-- .../bridge_mode/rate_limiting/test_rate_limiting.py | 2 +- .../rate_limiting_with_radius/test_radius_limiting.py | 6 ++++-- .../multi_psk/wpa2_security/test_multi_psk_nat_wpa2.py | 2 +- .../multi_psk/wpa_security/test_multi_psk_nat_wpa.py | 6 ++++-- .../nat_mode/rate_limiting/test_rate_limiting.py | 2 +- .../fiveg/test_dynamic_over_ssid_fiveg_wpa2.py | 4 ++-- .../wpa2_enterprise/fiveg/test_dynamic_vlan_fiveg_wpa2.py | 2 +- .../twog/test_dynamic_over_ssid_twog_wpa2.py | 4 ++-- .../wpa2_enterprise/twog/test_dynamic_vlan_twog_wpa2.py | 4 ++-- .../fiveg/test_dynamic_over_ssid_fiveg_wpa3.py | 5 ++++- .../wpa3_enterprise/fiveg/test_dynamic_vlan_fiveg_wpa3.py | 4 +++- .../twog/test_dynamic_over_ssid_twog_wpa3.py | 5 ++++- .../wpa3_enterprise/twog/test_dynamic_vlan_twog_wpa3.py | 4 +++- .../vlan_mode/fiveg_radio/test_vlan_fiveg.py | 4 +++- .../vlan_mode/rate_limiting/test_rate_limiting.py | 2 +- .../vlan_mode/twog_radio/test_vlan_twog.py | 4 +++- 22 files changed, 49 insertions(+), 28 deletions(-) diff --git a/tests/e2e/basic/dfs_test/wpa2_personal/dfs_20MHz/test_dfs_20_bridge.py b/tests/e2e/basic/dfs_test/wpa2_personal/dfs_20MHz/test_dfs_20_bridge.py index d1c6119cc..0ec3d5353 100644 --- a/tests/e2e/basic/dfs_test/wpa2_personal/dfs_20MHz/test_dfs_20_bridge.py +++ b/tests/e2e/basic/dfs_test/wpa2_personal/dfs_20MHz/test_dfs_20_bridge.py @@ -4,7 +4,7 @@ import os import time import pandas as pd -pytestmark = [pytest.mark.regression, +pytestmark = [pytest.mark.ow_regression_lf, pytest.mark.ow_dfs_tests_lf, pytest.mark.bandwidth_20MHz] diff --git a/tests/e2e/basic/dfs_test/wpa2_personal/dfs_40MHz/test_dfs_40_bridge.py b/tests/e2e/basic/dfs_test/wpa2_personal/dfs_40MHz/test_dfs_40_bridge.py index 9adf88f74..71ff56531 100644 --- a/tests/e2e/basic/dfs_test/wpa2_personal/dfs_40MHz/test_dfs_40_bridge.py +++ b/tests/e2e/basic/dfs_test/wpa2_personal/dfs_40MHz/test_dfs_40_bridge.py @@ -4,7 +4,7 @@ import os import time import pandas as pd -pytestmark = [pytest.mark.regression, +pytestmark = [pytest.mark.ow_regression_lf, pytest.mark.ow_dfs_tests_lf, pytest.mark.bandwidth_40MHz] diff --git a/tests/e2e/basic/dfs_test/wpa2_personal/dfs_80MHz/test_dfs_80_bridge.py b/tests/e2e/basic/dfs_test/wpa2_personal/dfs_80MHz/test_dfs_80_bridge.py index 5490ca1fc..a417cd963 100644 --- a/tests/e2e/basic/dfs_test/wpa2_personal/dfs_80MHz/test_dfs_80_bridge.py +++ b/tests/e2e/basic/dfs_test/wpa2_personal/dfs_80MHz/test_dfs_80_bridge.py @@ -4,7 +4,7 @@ import os import time import pandas as pd -pytestmark = [pytest.mark.regression, +pytestmark = [pytest.mark.ow_regression_lf, pytest.mark.ow_sanity_lf, pytest.mark.ow_dfs_tests_lf, pytest.mark.bandwidth_80MHz] diff --git a/tests/e2e/basic/endurance_test/bridge_mode/test_ap_stability.py b/tests/e2e/basic/endurance_test/bridge_mode/test_ap_stability.py index bd27f2f11..001c7d725 100644 --- a/tests/e2e/basic/endurance_test/bridge_mode/test_ap_stability.py +++ b/tests/e2e/basic/endurance_test/bridge_mode/test_ap_stability.py @@ -9,7 +9,8 @@ import os import allure import pytest -pytestmark = [pytest.mark.regression, pytest.mark.bridge, pytest.mark.usefixtures("setup_test_run")] +pytestmark = [pytest.mark.ow_stability_lf, + pytest.mark.bridge] setup_params_general = { "mode": "BRIDGE", diff --git a/tests/e2e/basic/validation_of_operating_modes/bridge_mode/multi_psk/wpa2_security/test_multipsk_basic_wpa2.py b/tests/e2e/basic/validation_of_operating_modes/bridge_mode/multi_psk/wpa2_security/test_multipsk_basic_wpa2.py index 6f49f96aa..a8c5e8677 100644 --- a/tests/e2e/basic/validation_of_operating_modes/bridge_mode/multi_psk/wpa2_security/test_multipsk_basic_wpa2.py +++ b/tests/e2e/basic/validation_of_operating_modes/bridge_mode/multi_psk/wpa2_security/test_multipsk_basic_wpa2.py @@ -9,7 +9,7 @@ import time import allure import pytest -pytestmark = [pytest.mark.regression, +pytestmark = [pytest.mark.ow_regression_lf, pytest.mark.ow_sanity_lf, pytest.mark.ow_multipsk_tests_lf, pytest.mark.bridge] diff --git a/tests/e2e/basic/validation_of_operating_modes/bridge_mode/multi_psk/wpa_security/test_multipsk_basic_wpa.py b/tests/e2e/basic/validation_of_operating_modes/bridge_mode/multi_psk/wpa_security/test_multipsk_basic_wpa.py index 67bf92a0e..fa9bc73e9 100644 --- a/tests/e2e/basic/validation_of_operating_modes/bridge_mode/multi_psk/wpa_security/test_multipsk_basic_wpa.py +++ b/tests/e2e/basic/validation_of_operating_modes/bridge_mode/multi_psk/wpa_security/test_multipsk_basic_wpa.py @@ -10,8 +10,10 @@ import time import pytest import allure -# pytestmark = [pytest.mark.multipsk, pytest.mark.bridge] -# pytest.mark.usefixtures("setup_test_run")] +pytestmark = [pytest.mark.ow_regression_lf, + pytest.mark.ow_sanity_lf, + pytest.mark.ow_multipsk_tests_lf, + pytest.mark.bridge] setup_params_general = { diff --git a/tests/e2e/basic/validation_of_operating_modes/bridge_mode/rate_limiting/test_rate_limiting.py b/tests/e2e/basic/validation_of_operating_modes/bridge_mode/rate_limiting/test_rate_limiting.py index 98cb8cafe..b79182592 100644 --- a/tests/e2e/basic/validation_of_operating_modes/bridge_mode/rate_limiting/test_rate_limiting.py +++ b/tests/e2e/basic/validation_of_operating_modes/bridge_mode/rate_limiting/test_rate_limiting.py @@ -5,7 +5,7 @@ Rate LImiting Bridge Mode Scenario import allure import pytest -pytestmark = [pytest.mark.regression, +pytestmark = [pytest.mark.ow_regression_lf, pytest.mark.ow_rate_limiting_tests_lf, pytest.mark.bridge] diff --git a/tests/e2e/basic/validation_of_operating_modes/bridge_mode/rate_limiting_with_radius/test_radius_limiting.py b/tests/e2e/basic/validation_of_operating_modes/bridge_mode/rate_limiting_with_radius/test_radius_limiting.py index 02fdd868c..6d1886aac 100644 --- a/tests/e2e/basic/validation_of_operating_modes/bridge_mode/rate_limiting_with_radius/test_radius_limiting.py +++ b/tests/e2e/basic/validation_of_operating_modes/bridge_mode/rate_limiting_with_radius/test_radius_limiting.py @@ -7,8 +7,10 @@ import pytest from configuration import RATE_LIMITING_RADIUS_SERVER_DATA from configuration import RATE_LIMITING_RADIUS_ACCOUNTING_DATA -pytestmark = [pytest.mark.regression, - pytest.mark.ow_rate_limiting_tests_lf, + +pytestmark = [pytest.mark.ow_regression_lf, + pytest.mark.ow_dynamic_qos_tests_lf, + pytest.mark.ow_rate_limiting_with_radius_tests_lf, pytest.mark.bridge] diff --git a/tests/e2e/basic/validation_of_operating_modes/nat_mode/multi_psk/wpa2_security/test_multi_psk_nat_wpa2.py b/tests/e2e/basic/validation_of_operating_modes/nat_mode/multi_psk/wpa2_security/test_multi_psk_nat_wpa2.py index c7a2a05dc..781304576 100644 --- a/tests/e2e/basic/validation_of_operating_modes/nat_mode/multi_psk/wpa2_security/test_multi_psk_nat_wpa2.py +++ b/tests/e2e/basic/validation_of_operating_modes/nat_mode/multi_psk/wpa2_security/test_multi_psk_nat_wpa2.py @@ -8,7 +8,7 @@ import time import allure import pytest -pytestmark = [pytest.mark.regression, +pytestmark = [pytest.mark.ow_regression_lf, pytest.mark.ow_sanity_lf, pytest.mark.ow_multipsk_tests_lf, pytest.mark.nat] diff --git a/tests/e2e/basic/validation_of_operating_modes/nat_mode/multi_psk/wpa_security/test_multi_psk_nat_wpa.py b/tests/e2e/basic/validation_of_operating_modes/nat_mode/multi_psk/wpa_security/test_multi_psk_nat_wpa.py index 375816e63..0215f5510 100644 --- a/tests/e2e/basic/validation_of_operating_modes/nat_mode/multi_psk/wpa_security/test_multi_psk_nat_wpa.py +++ b/tests/e2e/basic/validation_of_operating_modes/nat_mode/multi_psk/wpa_security/test_multi_psk_nat_wpa.py @@ -10,8 +10,10 @@ import time import pytest import allure -# pytestmark = [pytest.mark.multipsk, pytest.mark.nat, pytest.mark.performance] # regression_multipsk regression -# pytest.mark.usefixtures("setup_test_run")] +pytestmark = [pytest.mark.ow_regression_lf, + pytest.mark.ow_sanity_lf, + pytest.mark.ow_multipsk_tests_lf, + pytest.mark.nat] setup_params_general = { diff --git a/tests/e2e/basic/validation_of_operating_modes/nat_mode/rate_limiting/test_rate_limiting.py b/tests/e2e/basic/validation_of_operating_modes/nat_mode/rate_limiting/test_rate_limiting.py index 3e29d63ef..92decfab4 100644 --- a/tests/e2e/basic/validation_of_operating_modes/nat_mode/rate_limiting/test_rate_limiting.py +++ b/tests/e2e/basic/validation_of_operating_modes/nat_mode/rate_limiting/test_rate_limiting.py @@ -6,7 +6,7 @@ import allure import pytest -pytestmark = [pytest.mark.regression, +pytestmark = [pytest.mark.ow_regression_lf, pytest.mark.ow_rate_limiting_tests_lf, pytest.mark.nat] diff --git a/tests/e2e/basic/validation_of_operating_modes/vlan_mode/dynamic_vlan/wpa2_enterprise/fiveg/test_dynamic_over_ssid_fiveg_wpa2.py b/tests/e2e/basic/validation_of_operating_modes/vlan_mode/dynamic_vlan/wpa2_enterprise/fiveg/test_dynamic_over_ssid_fiveg_wpa2.py index c42134a06..980b239e0 100644 --- a/tests/e2e/basic/validation_of_operating_modes/vlan_mode/dynamic_vlan/wpa2_enterprise/fiveg/test_dynamic_over_ssid_fiveg_wpa2.py +++ b/tests/e2e/basic/validation_of_operating_modes/vlan_mode/dynamic_vlan/wpa2_enterprise/fiveg/test_dynamic_over_ssid_fiveg_wpa2.py @@ -11,9 +11,9 @@ import pytest from configuration import DYNAMIC_VLAN_RADIUS_SERVER_DATA from configuration import DYNAMIC_VLAN_RADIUS_ACCOUNTING_DATA -pytestmark = [pytest.mark.regression, +pytestmark = [pytest.mark.ow_regression_lf, pytest.mark.ow_sanity_lf, - pytest.mark.dynamic_vlan, + pytest.mark.ow_dvlan_tests_lf, pytest.mark.wpa2_enterprise, pytest.mark.fiveg] diff --git a/tests/e2e/basic/validation_of_operating_modes/vlan_mode/dynamic_vlan/wpa2_enterprise/fiveg/test_dynamic_vlan_fiveg_wpa2.py b/tests/e2e/basic/validation_of_operating_modes/vlan_mode/dynamic_vlan/wpa2_enterprise/fiveg/test_dynamic_vlan_fiveg_wpa2.py index 4d9915123..94d8afc68 100644 --- a/tests/e2e/basic/validation_of_operating_modes/vlan_mode/dynamic_vlan/wpa2_enterprise/fiveg/test_dynamic_vlan_fiveg_wpa2.py +++ b/tests/e2e/basic/validation_of_operating_modes/vlan_mode/dynamic_vlan/wpa2_enterprise/fiveg/test_dynamic_vlan_fiveg_wpa2.py @@ -12,7 +12,7 @@ import time from configuration import DYNAMIC_VLAN_RADIUS_SERVER_DATA from configuration import DYNAMIC_VLAN_RADIUS_ACCOUNTING_DATA -pytestmark = [pytest.mark.regression, +pytestmark = [pytest.mark.ow_regression_lf, pytest.mark.ow_dvlan_tests_lf, pytest.mark.wpa2_enterprise, pytest.mark.fiveg] diff --git a/tests/e2e/basic/validation_of_operating_modes/vlan_mode/dynamic_vlan/wpa2_enterprise/twog/test_dynamic_over_ssid_twog_wpa2.py b/tests/e2e/basic/validation_of_operating_modes/vlan_mode/dynamic_vlan/wpa2_enterprise/twog/test_dynamic_over_ssid_twog_wpa2.py index ce435f5b9..0c7737f17 100644 --- a/tests/e2e/basic/validation_of_operating_modes/vlan_mode/dynamic_vlan/wpa2_enterprise/twog/test_dynamic_over_ssid_twog_wpa2.py +++ b/tests/e2e/basic/validation_of_operating_modes/vlan_mode/dynamic_vlan/wpa2_enterprise/twog/test_dynamic_over_ssid_twog_wpa2.py @@ -11,9 +11,9 @@ import pytest from configuration import DYNAMIC_VLAN_RADIUS_SERVER_DATA from configuration import DYNAMIC_VLAN_RADIUS_ACCOUNTING_DATA -pytestmark = [pytest.mark.regression, +pytestmark = [pytest.mark.ow_regression_lf, pytest.mark.ow_sanity_lf, - pytest.mark.dynamic_vlan, + pytest.mark.ow_dvlan_tests_lf, pytest.mark.wpa2_enterprise, pytest.mark.twog] diff --git a/tests/e2e/basic/validation_of_operating_modes/vlan_mode/dynamic_vlan/wpa2_enterprise/twog/test_dynamic_vlan_twog_wpa2.py b/tests/e2e/basic/validation_of_operating_modes/vlan_mode/dynamic_vlan/wpa2_enterprise/twog/test_dynamic_vlan_twog_wpa2.py index e7de5f8b3..71731a0ff 100644 --- a/tests/e2e/basic/validation_of_operating_modes/vlan_mode/dynamic_vlan/wpa2_enterprise/twog/test_dynamic_vlan_twog_wpa2.py +++ b/tests/e2e/basic/validation_of_operating_modes/vlan_mode/dynamic_vlan/wpa2_enterprise/twog/test_dynamic_vlan_twog_wpa2.py @@ -12,8 +12,8 @@ import time from configuration import DYNAMIC_VLAN_RADIUS_SERVER_DATA from configuration import DYNAMIC_VLAN_RADIUS_ACCOUNTING_DATA -pytestmark = [pytest.mark.regression, - pytest.mark.dynamic_vlan, +pytestmark = [pytest.mark.ow_regression_lf, + pytest.mark.ow_dvlan_tests_lf, pytest.mark.wpa2_enterprise, pytest.mark.twog] diff --git a/tests/e2e/basic/validation_of_operating_modes/vlan_mode/dynamic_vlan/wpa3_enterprise/fiveg/test_dynamic_over_ssid_fiveg_wpa3.py b/tests/e2e/basic/validation_of_operating_modes/vlan_mode/dynamic_vlan/wpa3_enterprise/fiveg/test_dynamic_over_ssid_fiveg_wpa3.py index 5bc7f6846..b441637a9 100644 --- a/tests/e2e/basic/validation_of_operating_modes/vlan_mode/dynamic_vlan/wpa3_enterprise/fiveg/test_dynamic_over_ssid_fiveg_wpa3.py +++ b/tests/e2e/basic/validation_of_operating_modes/vlan_mode/dynamic_vlan/wpa3_enterprise/fiveg/test_dynamic_over_ssid_fiveg_wpa3.py @@ -11,7 +11,10 @@ import pytest from configuration import DYNAMIC_VLAN_RADIUS_SERVER_DATA from configuration import DYNAMIC_VLAN_RADIUS_ACCOUNTING_DATA -pytestmark = [pytest.mark.regression, pytest.mark.dynamic_vlan, pytest.mark.wpa3_enterprise, pytest.mark.vlan,pytest.mark.fiveg] +pytestmark = [pytest.mark.ow_regression_lf, + pytest.mark.ow_dvlan_tests_lf, + pytest.mark.wpa3_enterprise, + pytest.mark.fiveg] setup_params_general = { "mode": "VLAN", diff --git a/tests/e2e/basic/validation_of_operating_modes/vlan_mode/dynamic_vlan/wpa3_enterprise/fiveg/test_dynamic_vlan_fiveg_wpa3.py b/tests/e2e/basic/validation_of_operating_modes/vlan_mode/dynamic_vlan/wpa3_enterprise/fiveg/test_dynamic_vlan_fiveg_wpa3.py index 3227b7663..05dcaea05 100644 --- a/tests/e2e/basic/validation_of_operating_modes/vlan_mode/dynamic_vlan/wpa3_enterprise/fiveg/test_dynamic_vlan_fiveg_wpa3.py +++ b/tests/e2e/basic/validation_of_operating_modes/vlan_mode/dynamic_vlan/wpa3_enterprise/fiveg/test_dynamic_vlan_fiveg_wpa3.py @@ -12,7 +12,9 @@ import time from configuration import DYNAMIC_VLAN_RADIUS_SERVER_DATA from configuration import DYNAMIC_VLAN_RADIUS_ACCOUNTING_DATA -pytestmark = [pytest.mark.regression, pytest.mark.dynamic_vlan, pytest.mark.wpa3_enterprise, pytest.mark.vlan, +pytestmark = [pytest.mark.ow_regression_lf, + pytest.mark.ow_dvlan_tests_lf, + pytest.mark.wpa3_enterprise, pytest.mark.fiveg] setup_params_general = { diff --git a/tests/e2e/basic/validation_of_operating_modes/vlan_mode/dynamic_vlan/wpa3_enterprise/twog/test_dynamic_over_ssid_twog_wpa3.py b/tests/e2e/basic/validation_of_operating_modes/vlan_mode/dynamic_vlan/wpa3_enterprise/twog/test_dynamic_over_ssid_twog_wpa3.py index 8871e2723..abec88ee5 100644 --- a/tests/e2e/basic/validation_of_operating_modes/vlan_mode/dynamic_vlan/wpa3_enterprise/twog/test_dynamic_over_ssid_twog_wpa3.py +++ b/tests/e2e/basic/validation_of_operating_modes/vlan_mode/dynamic_vlan/wpa3_enterprise/twog/test_dynamic_over_ssid_twog_wpa3.py @@ -11,7 +11,10 @@ import pytest from configuration import DYNAMIC_VLAN_RADIUS_SERVER_DATA from configuration import DYNAMIC_VLAN_RADIUS_ACCOUNTING_DATA -pytestmark = [pytest.mark.regression, pytest.mark.dynamic_vlan, pytest.mark.wpa3_enterprise, pytest.mark.vlan,pytest.mark.twog] +pytestmark = [pytest.mark.ow_regression_lf, + pytest.mark.ow_dvlan_tests_lf, + pytest.mark.wpa3_enterprise, + pytest.mark.twog] setup_params_general = { "mode": "VLAN", diff --git a/tests/e2e/basic/validation_of_operating_modes/vlan_mode/dynamic_vlan/wpa3_enterprise/twog/test_dynamic_vlan_twog_wpa3.py b/tests/e2e/basic/validation_of_operating_modes/vlan_mode/dynamic_vlan/wpa3_enterprise/twog/test_dynamic_vlan_twog_wpa3.py index e2884798f..5a177b1ea 100644 --- a/tests/e2e/basic/validation_of_operating_modes/vlan_mode/dynamic_vlan/wpa3_enterprise/twog/test_dynamic_vlan_twog_wpa3.py +++ b/tests/e2e/basic/validation_of_operating_modes/vlan_mode/dynamic_vlan/wpa3_enterprise/twog/test_dynamic_vlan_twog_wpa3.py @@ -12,7 +12,9 @@ import time from configuration import DYNAMIC_VLAN_RADIUS_SERVER_DATA from configuration import DYNAMIC_VLAN_RADIUS_ACCOUNTING_DATA -pytestmark = [pytest.mark.regression, pytest.mark.dynamic_vlan, pytest.mark.wpa3_enterprise, pytest.mark.vlan, +pytestmark = [pytest.mark.ow_regression_lf, + pytest.mark.ow_dvlan_tests_lf, + pytest.mark.wpa3_enterprise, pytest.mark.twog] setup_params_general = { diff --git a/tests/e2e/basic/validation_of_operating_modes/vlan_mode/fiveg_radio/test_vlan_fiveg.py b/tests/e2e/basic/validation_of_operating_modes/vlan_mode/fiveg_radio/test_vlan_fiveg.py index 698e8e494..003fd17a0 100644 --- a/tests/e2e/basic/validation_of_operating_modes/vlan_mode/fiveg_radio/test_vlan_fiveg.py +++ b/tests/e2e/basic/validation_of_operating_modes/vlan_mode/fiveg_radio/test_vlan_fiveg.py @@ -7,7 +7,9 @@ import time import allure import pytest -pytestmark = [pytest.mark.multi_vlan, + +pytestmark = [pytest.mark.ow_regression_lf, + pytest.mark.ow_multi_vlan_tests_lf, pytest.mark.fiveg] setup_params_general = { diff --git a/tests/e2e/basic/validation_of_operating_modes/vlan_mode/rate_limiting/test_rate_limiting.py b/tests/e2e/basic/validation_of_operating_modes/vlan_mode/rate_limiting/test_rate_limiting.py index 074c4f3dd..0e30e6f35 100644 --- a/tests/e2e/basic/validation_of_operating_modes/vlan_mode/rate_limiting/test_rate_limiting.py +++ b/tests/e2e/basic/validation_of_operating_modes/vlan_mode/rate_limiting/test_rate_limiting.py @@ -5,7 +5,7 @@ Rate LImiting Vlan Mode Scenario import allure import pytest -pytestmark = [pytest.mark.regression, +pytestmark = [pytest.mark.ow_regression_lf, pytest.mark.ow_rate_limiting_tests_lf, pytest.mark.vlan] diff --git a/tests/e2e/basic/validation_of_operating_modes/vlan_mode/twog_radio/test_vlan_twog.py b/tests/e2e/basic/validation_of_operating_modes/vlan_mode/twog_radio/test_vlan_twog.py index 3f68d2d59..12b5046ef 100644 --- a/tests/e2e/basic/validation_of_operating_modes/vlan_mode/twog_radio/test_vlan_twog.py +++ b/tests/e2e/basic/validation_of_operating_modes/vlan_mode/twog_radio/test_vlan_twog.py @@ -7,7 +7,9 @@ import time import allure import pytest -pytestmark = [pytest.mark.multi_vlan, + +pytestmark = [pytest.mark.ow_regression_lf, + pytest.mark.ow_multi_vlan_tests_lf, pytest.mark.twog] setup_params_general = {