We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 836e10a commit 9b3c309Copy full SHA for 9b3c309
tests/test_vlan.py
@@ -2,6 +2,10 @@
2
import time
3
import re
4
import json
5
+import pytest
6
+import platform
7
+from distutils.version import StrictVersion
8
+
9
10
class TestVlan(object):
11
def setup_db(self, dvs):
@@ -104,6 +108,9 @@ def test_VlanAddRemove(self, dvs):
104
108
# remvoe vlan
105
109
self.remove_vlan("2")
106
110
111
+ # Ignore testcase in Debian Jessie
112
+ # TODO: remove this skip if we have fix
113
+ @pytest.mark.skipif(StrictVersion(platform.linux_distribution()[1]) <= StrictVersion('8.9'), reason="Debian 8.9 or before has no support")
107
114
def test_MultipleVlan(self, dvs):
115
self.setup_db(dvs)
116
0 commit comments