Skip to content

Commit 7175245

Browse files
authored
[VS Test] Skip failing subport tests (#2370)
* Skip failing subport tests
1 parent d621542 commit 7175245

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

tests/test_sub_port_intf.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import json
22
import time
3+
import pytest
34

45
from dvslib.dvs_common import wait_for_result
56
from swsscommon import swsscommon
@@ -581,6 +582,7 @@ def _test_sub_port_intf_creation(self, dvs, sub_port_intf_name, vrf_name=None):
581582
self.remove_lag(parent_port)
582583
self.check_lag_removal(parent_port_oid)
583584

585+
@pytest.mark.skip(reason="Failing. Under investigation")
584586
def test_sub_port_intf_creation(self, dvs):
585587
self.connect_dbs(dvs)
586588

@@ -667,6 +669,7 @@ def _test_sub_port_intf_add_ip_addrs(self, dvs, sub_port_intf_name, vrf_name=Non
667669
self.remove_lag(parent_port)
668670
self.asic_db.wait_for_n_keys(ASIC_LAG_TABLE, 0)
669671

672+
@pytest.mark.skip(reason="Failing. Under investigation")
670673
def test_sub_port_intf_add_ip_addrs(self, dvs):
671674
self.connect_dbs(dvs)
672675

@@ -742,6 +745,7 @@ def _test_sub_port_intf_appl_db_proc_seq(self, dvs, sub_port_intf_name, admin_up
742745
self.remove_lag(parent_port)
743746
self.check_lag_removal(parent_port_oid)
744747

748+
@pytest.mark.skip(reason="Failing. Under investigation")
745749
def test_sub_port_intf_appl_db_proc_seq(self, dvs):
746750
self.connect_dbs(dvs)
747751

@@ -866,6 +870,7 @@ def _test_sub_port_intf_admin_status_change(self, dvs, sub_port_intf_name, vrf_n
866870
self.remove_lag(parent_port)
867871
self.asic_db.wait_for_n_keys(ASIC_LAG_TABLE, 0)
868872

873+
@pytest.mark.skip(reason="Failing. Under investigation")
869874
def test_sub_port_intf_admin_status_change(self, dvs):
870875
self.connect_dbs(dvs)
871876

@@ -950,6 +955,7 @@ def _test_sub_port_intf_remove_ip_addrs(self, dvs, sub_port_intf_name, vrf_name=
950955
self.remove_lag(parent_port)
951956
self.asic_db.wait_for_n_keys(ASIC_LAG_TABLE, 0)
952957

958+
@pytest.mark.skip(reason="Failing. Under investigation")
953959
def test_sub_port_intf_remove_ip_addrs(self, dvs):
954960
self.connect_dbs(dvs)
955961

@@ -1141,6 +1147,7 @@ def _test_sub_port_intf_removal(self, dvs, sub_port_intf_name, removal_seq_test=
11411147
self.remove_lag(parent_port)
11421148
self.check_lag_removal(parent_port_oid)
11431149

1150+
@pytest.mark.skip(reason="Failing. Under investigation")
11441151
def test_sub_port_intf_removal(self, dvs):
11451152
self.connect_dbs(dvs)
11461153

@@ -1216,6 +1223,7 @@ def _test_sub_port_intf_mtu(self, dvs, sub_port_intf_name, vrf_name=None):
12161223
self.remove_lag(parent_port)
12171224
self.asic_db.wait_for_n_keys(ASIC_LAG_TABLE, 0)
12181225

1226+
@pytest.mark.skip(reason="Failing. Under investigation")
12191227
def test_sub_port_intf_mtu(self, dvs):
12201228
self.connect_dbs(dvs)
12211229

@@ -1444,6 +1452,7 @@ def _test_sub_port_intf_nhg_accel(self, dvs, sub_port_intf_name, nhop_num=3, cre
14441452

14451453
parent_port_idx += (4 if parent_port_prefix == ETHERNET_PREFIX else 1)
14461454

1455+
@pytest.mark.skip(reason="Failing. Under investigation")
14471456
def test_sub_port_intf_nhg_accel(self, dvs):
14481457
self.connect_dbs(dvs)
14491458

@@ -1584,6 +1593,7 @@ def _test_sub_port_intf_oper_down_with_pending_neigh_route_tasks(self, dvs, sub_
15841593

15851594
parent_port_idx += (4 if parent_port_prefix == ETHERNET_PREFIX else 1)
15861595

1596+
@pytest.mark.skip(reason="Failing. Under investigation")
15871597
def test_sub_port_intf_oper_down_with_pending_neigh_route_tasks(self, dvs):
15881598
self.connect_dbs(dvs)
15891599

0 commit comments

Comments
 (0)