Skip to content
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
2 changes: 2 additions & 0 deletions tests/generic_config_updater/test_aaa.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,15 @@

pytestmark = [
pytest.mark.topology('any'),
pytest.mark.skip(reason="Test costs too much time. Temp skip for now."),
]

logger = logging.getLogger(__name__)

AAA_CATEGORY = ["authentication", "authorization", "accounting"]
DEFAULT_TACACS_SERVER = "100.127.20.21"


@pytest.fixture(autouse=True)
def setup_env(duthosts, rand_one_dut_hostname):
"""
Expand Down
2 changes: 2 additions & 0 deletions tests/generic_config_updater/test_cacl.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,14 @@

pytestmark = [
pytest.mark.topology('t0'),
pytest.mark.skip(reason="Test costs too much time. Temp skip for now."),
]

logger = logging.getLogger(__name__)

T0_CACL_TABLE = ["NTP_ACL", "SNMP_ACL", "SSH_ONLY"]


def get_cacl_tables(duthost):
"""Get acl control palne tables
"""
Expand Down
2 changes: 2 additions & 0 deletions tests/generic_config_updater/test_dhcp_relay.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@

pytestmark = [
pytest.mark.topology('t0'),
pytest.mark.skip(reason="Test costs too much time. Temp skip for now."),
]

logger = logging.getLogger(__name__)
Expand All @@ -20,6 +21,7 @@
CONFIG_CLEANUP = "config_cleanup"
CONFIG_ADD_DEFAULT = "config_add_default"


@pytest.fixture(scope="module")
def vlan_intfs_dict(utils_vlan_intfs_dict_orig):
""" Add two new vlan for test
Expand Down
2 changes: 2 additions & 0 deletions tests/generic_config_updater/test_ipv6.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,10 @@

pytestmark = [
pytest.mark.topology('t0', 't1'),
pytest.mark.skip(reason="Test costs too much time. Temp skip for now."),
]


@pytest.fixture(autouse=True)
def ensure_dut_readiness(duthost):
"""
Expand Down
2 changes: 2 additions & 0 deletions tests/generic_config_updater/test_lo_interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,12 @@

pytestmark = [
pytest.mark.topology('t0'),
pytest.mark.skip(reason="Test costs too much time. Temp skip for now."),
]

logger = logging.getLogger(__name__)


@pytest.fixture(autouse=True)
def setup_env(duthosts, rand_one_dut_hostname):
"""
Expand Down
1 change: 1 addition & 0 deletions tests/generic_config_updater/test_portchannel_interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@

pytestmark = [
pytest.mark.topology('t0'),
pytest.mark.skip(reason="Test costs too much time. Temp skip for now."),
]

logger = logging.getLogger(__name__)
Expand Down
2 changes: 2 additions & 0 deletions tests/generic_config_updater/test_syslog.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@

pytestmark = [
pytest.mark.topology('any'),
pytest.mark.skip(reason="Test costs too much time. Temp skip for now."),
]

logger = logging.getLogger(__name__)
Expand All @@ -18,6 +19,7 @@
CONFIG_CLEANUP = "config_cleanup"
CONFIG_ADD_DEFAULT = "config_add_default"


@pytest.fixture(scope="module", params=[CONFIG_CLEANUP, CONFIG_ADD_DEFAULT])
def init_syslog_config(request):
return request.param
Expand Down
2 changes: 2 additions & 0 deletions tests/generic_config_updater/test_vlan_interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,12 @@

pytestmark = [
pytest.mark.topology('t0'),
pytest.mark.skip(reason="Test costs too much time. Temp skip for now."),
]

logger = logging.getLogger(__name__)


@pytest.fixture(autouse=True)
def cleanup_test_env(duthosts, rand_one_dut_hostname):
"""
Expand Down