Skip to content

Commit

Permalink
[vs tests] Mark VLAN and warm reboot tests as xfail
Browse files Browse the repository at this point in the history
Signed-off-by: Danny Allen <[email protected]>
  • Loading branch information
daall committed Jan 27, 2020
1 parent 3732e74 commit f633ce9
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tests/test_vlan.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@
from distutils.version import StrictVersion


# FIXME: This test is extremely unstable and requires several retries
# for it to pass - we need to stabilize this test before putting it back
# into the pipeline.
@pytest.mark.xfail(reason="VLAN test unstable")
class TestVlan(object):
def setup_db(self, dvs):
self.pdb = swsscommon.DBConnector(0, dvs.redis_sock, 0)
Expand Down
5 changes: 5 additions & 0 deletions tests/test_warm_reboot.py
Original file line number Diff line number Diff line change
Expand Up @@ -234,6 +234,11 @@ def ping_new_ips(dvs):
dvs.runcmd(['sh', '-c', "ping -c 1 -W 0 -q {}.0.0.{} > /dev/null 2>&1".format(i*4,j+NUM_NEIGH_PER_INTF+2)])
dvs.runcmd(['sh', '-c', "ping6 -c 1 -W 0 -q {}00::{} > /dev/null 2>&1".format(i*4,j+NUM_NEIGH_PER_INTF+2)])


# FIXME: This test is extremely unstable and requires several retries
# for it to pass - we need to stabilize this test before putting it back
# into the pipeline.
@pytest.mark.xfail(reason="warm reboot test unstable")
class TestWarmReboot(object):
def test_PortSyncdWarmRestart(self, dvs, testlog):

Expand Down

0 comments on commit f633ce9

Please sign in to comment.