]> git.ipfire.org Git - thirdparty/lldpd.git/commitdiff
tests: mark "too_many_vlans" test as unreliable
authorVincent Bernat <vincent@bernat.ch>
Fri, 9 Dec 2022 08:26:48 +0000 (09:26 +0100)
committerVincent Bernat <vincent@bernat.ch>
Fri, 9 Dec 2022 08:52:49 +0000 (09:52 +0100)
tests/integration/test_dot1.py

index 1a0736b3e980f2baf4651d27eed7828274112cff..a026b08498109d73c9a01e9c347b2c092b1c650c 100644 (file)
@@ -28,11 +28,12 @@ class TestLldpDot1(object):
             ]
             assert out["lldp.eth0.vlan.vlan-id"] == ["100", "200", "300", "4000"]
 
+    @pytest.mark.skip(reason="unreliable test")
     def test_too_many_vlans(self, lldpd1, lldpd, lldpcli, namespaces, links):
         with namespaces(2):
             for v in range(100, 1000):
                 links.vlan("vlan{}".format(v), v, "eth1")
-            lldpd(sleep=6)
+            lldpd()
         with namespaces(1):
             out = lldpcli("-f", "keyvalue", "show", "neighbors", "details")
             assert "lldp.eth0.vlan" not in out