Skip to content

Commit 4020ddb

Browse files
authored
Merge pull request #179 from brianhlin/SOFTWARE-3783.no-rsv-osg35
Exclude RSV tests on OSG 3.5 (SOFTWARE-3783)
2 parents ab8a9a5 + e14226c commit 4020ddb

File tree

4 files changed

+15
-4
lines changed

4 files changed

+15
-4
lines changed

osgtest/tests/test_160_rsv.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,13 @@
22

33
from osgtest.library import core, service, osgunittest
44

5+
56
class TestStartRSV(osgunittest.OSGTestCase):
67

8+
@core.osgrelease(3.4)
9+
def setUp(self):
10+
pass
11+
712
def test_01_config(self):
813
pass
914

osgtest/tests/test_470_rsv.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,10 @@ class TestRSV(osgunittest.OSGTestCase):
2626

2727
host = socket.getfqdn()
2828

29+
@core.osgrelease(3.4)
30+
def setUp(self):
31+
pass
32+
2933
def start_rsv(self):
3034
core.check_system(('rsv-control', '--on'), 'rsv-control --on')
3135

@@ -203,16 +207,12 @@ def test_031_hostcert_expiry_metric(self):
203207

204208
self.run_metric('org.osg.local.hostcert-expiry')
205209

206-
# OSG 3.3 tries to download from IU and causes a failure
207-
@core.osgrelease(3.4)
208210
def test_032_cacert_expiry(self):
209211
core.skip_ok_unless_installed('rsv', 'htcondor-ce')
210212

211213
self.run_metric('org.osg.certificates.cacert-expiry',
212214
accept_status=['OK', 'WARNING'])
213215

214-
# OSG 3.3 tries to download from IU and causes a failure
215-
@core.osgrelease(3.4)
216216
def test_033_crlcert_expiry(self):
217217
core.skip_ok_unless_installed('rsv', 'htcondor-ce')
218218

osgtest/tests/test_830_rsv.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,13 @@
33
import osgtest.library.service as service
44
import osgtest.library.osgunittest as osgunittest
55

6+
67
class TestStopRSV(osgunittest.OSGTestCase):
78

9+
@core.osgrelease(3.4)
10+
def setUp(self):
11+
pass
12+
813
def test_01_stop_rsv(self):
914
core.skip_ok_unless_installed('rsv')
1015
self.skip_ok_if(core.state['rsv.started-service'] == False, 'did not start service')

travis-ci/rsv.packages

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
rsv

0 commit comments

Comments
 (0)