Skip to content

Commit 8b34807

Browse files
author
Paul Breaux
committed
Skipping this test when running against 11.5.4.
1 parent 837863c commit 8b34807

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

test/functional/tm/ltm/test_virtual.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,9 @@
1313
# limitations under the License.
1414
#
1515

16+
from distutils.version import LooseVersion
1617
from pprint import pprint as pp
18+
import pytest
1719

1820
TESTDESCRIPTION = "TESTDESCRIPTION"
1921

@@ -47,6 +49,11 @@ def test_virtual_create_refresh_update_delete_load(self, request, bigip):
4749
assert virtual2.selfLink == virtual1.selfLink
4850

4951

52+
@pytest.mark.skipif(LooseVersion(pytest.config.getoption('--release')) <
53+
LooseVersion('11.6.0'),
54+
reason='This test fails in 11.5.4. Will '
55+
'revert this change in next PR.'
56+
)
5057
def test_profiles_CE(bigip, opt_release):
5158
v1 = bigip.ltm.virtuals.virtual.create(name="tv1", partition="Common")
5259
p1 = v1.profiles_s.profiles.create(name="http")

0 commit comments

Comments
 (0)