From ed387cd3efa139de4e85dbd92e2e268a048eaac7 Mon Sep 17 00:00:00 2001 From: Zhixin Zhu <44230426+zhixzhu@users.noreply.github.com> Date: Tue, 10 Sep 2024 00:42:16 +0800 Subject: [PATCH] Update qos_sai_base.py --- tests/qos/qos_sai_base.py | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/tests/qos/qos_sai_base.py b/tests/qos/qos_sai_base.py index 46d61c410ce..833b458321f 100644 --- a/tests/qos/qos_sai_base.py +++ b/tests/qos/qos_sai_base.py @@ -2267,16 +2267,6 @@ def skip_pacific_dst_asic(self, dutConfig): yield return - @pytest.fixture(scope="function", autouse=False) - def skip_longlink(self, dutQosConfig): - portSpeedCableLength = dutQosConfig["portSpeedCableLength"] - match = re.search("_([0-9]*)m", portSpeedCableLength) - if match and int(match.group(1)) > 2000: - pytest.skip( - "This test is skipped for longlink.") - yield - return - def populate_arp_entries( self, get_src_dst_asic_and_duts, ptfhost, dutTestParams, dutConfig, releaseAllPorts, handleFdbAging, tbinfo, lower_tor_host # noqa F811