Skip to content

Commit f501e1c

Browse files
authored
[VS Test] Skip flaky tests (sonic-net#1875)
* Skip flaky test, under investigation
1 parent 7d16f69 commit f501e1c

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

tests/test_buffer_traditional.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ def setup_teardown_test(self, dvs):
6868
finally:
6969
self.teardown()
7070

71+
@pytest.mark.skip(reason="Failing. Under investigation")
7172
def test_zero_cable_len_profile_update(self, dvs, setup_teardown_test):
7273
self.pg_name_map = setup_teardown_test
7374
orig_cable_len = None

tests/test_speed.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
"""test_speed.py verifies that speed is set on interfaces and buffer manager behavies correctly on speed change."""
2+
import pytest
23

34

45
class TestSpeedSet:
56
# FIXME: This value should probably not be hardcoded since the persistent container can
67
# specify a dynamic number of ports now.
78
NUM_PORTS = 32
89

10+
@pytest.mark.skip(reason="Failing. Under investigation")
911
def test_SpeedAndBufferSet(self, dvs, testlog):
1012
configured_speed_list = []
1113
speed_list = ["10000", "25000", "40000", "50000", "100000"]

0 commit comments

Comments
 (0)