|
18 | 18 | class InterfaceManagementTest(ConfiguredTestCase):
|
19 | 19 | __test__ = False
|
20 | 20 |
|
21 |
| - @skip_on_switches("juniper", "juniper_qfx_copper", "juniper_mx") |
| 21 | + @skip_on_switches("juniper", "juniper_qfx_copper", "juniper_mx", "arista") |
22 | 22 | def test_set_interface_state_off(self):
|
23 | 23 | self.client.set_interface_state(self.test_port, OFF)
|
24 | 24 |
|
25 |
| - @skip_on_switches("juniper", "juniper_qfx_copper", "juniper_mx") |
| 25 | + @skip_on_switches("juniper", "juniper_qfx_copper", "juniper_mx", "arista") |
26 | 26 | def test_set_interface_state_on(self):
|
27 | 27 | self.client.set_interface_state(self.test_port, ON)
|
28 | 28 |
|
29 |
| - @skip_on_switches("cisco", "brocade", "brocade_telnet", "juniper_mx") |
| 29 | + @skip_on_switches("cisco", "brocade", "brocade_telnet", "juniper_mx", "arista") |
30 | 30 | def test_edit_spanning_tree(self):
|
31 | 31 | self.client.edit_interface_spanning_tree(self.test_port, edge=True)
|
32 | 32 |
|
33 |
| - @skip_on_switches("cisco", "brocade", "brocade_telnet", "juniper_mx") |
| 33 | + @skip_on_switches("cisco", "brocade", "brocade_telnet", "juniper_mx", "arista") |
34 | 34 | def test_set_interface_lldp_state(self):
|
35 | 35 | self.client.set_interface_lldp_state(self.test_port, enabled=True)
|
36 | 36 |
|
37 |
| - @skip_on_switches("cisco", "brocade", "brocade_telnet", "juniper_mx") |
| 37 | + @skip_on_switches("cisco", "brocade", "brocade_telnet", "juniper_mx", "arista") |
38 | 38 | def test_disable_lldp(self):
|
39 | 39 | self.client.set_interface_lldp_state(self.test_port, enabled=False)
|
0 commit comments