Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[VS Test] Skip flaky tests #1875

Merged
merged 2 commits into from
Aug 17, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions tests/test_buffer_traditional.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ def setup_teardown_test(self, dvs):
finally:
self.teardown()

@pytest.mark.skip(reason="Failing. Under investigation")
def test_zero_cable_len_profile_update(self, dvs, setup_teardown_test):
self.pg_name_map = setup_teardown_test
orig_cable_len = None
Expand Down
2 changes: 2 additions & 0 deletions tests/test_speed.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
"""test_speed.py verifies that speed is set on interfaces and buffer manager behavies correctly on speed change."""
import pytest


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

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