Skip to content

Commit ec0c5c9

Browse files
caphrim007zancas
authored andcommitted
Fixes the skipping of ltm pool tests
Issues: Fixes #508 Problem: The pytest.skip decorator was being used in a method of one of the test classes and this was causing all of the tests in the file to be skipped. Analysis: The correct syntax for this is to use "pytest.mark.skip", but I took a look and it turns out that these tests work just fine. So I removed the skip entirely Tests: * test/functional/tm/ltm/test_pool.py
1 parent 7d34454 commit ec0c5c9

1 file changed

Lines changed: 0 additions & 3 deletions

File tree

test/functional/tm/ltm/test_pool.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -94,9 +94,6 @@ def test_create_member(self, request, bigip):
9494
member, _ = setup_member_test(request, bigip, 'membertestpool1',
9595
'Common')
9696

97-
@pytest.skip('A known issue with generation number.'
98-
'See: https://github.com/F5Networks/'
99-
'f5-common-python/issues/334')
10097
def test_update_member(self, request, bigip):
10198
member, _ = setup_member_test(request, bigip, 'membertestpool1',
10299
'Common')

0 commit comments

Comments
 (0)