Skip to content

Commit 735ebc3

Browse files
committed
Only run tomcat on EL6 - only used for Gratia
1 parent 3e352fe commit 735ebc3

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

osgtest/tests/test_240_tomcat.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,11 @@
88

99
class TestStartTomcat(osgunittest.OSGTestCase):
1010

11+
# tomcat is only used for gratia service now
12+
@core.elrelease(6)
13+
def setUp(self):
14+
pass
15+
1116
def test_02_config_tomcat(self):
1217
core.skip_ok_unless_installed(tomcat.pkgname())
1318

osgtest/tests/test_760_tomcat.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,11 @@
99

1010
class TestStopTomcat(osgunittest.OSGTestCase):
1111

12+
# tomcat is only used for gratia service now
13+
@core.elrelease(6)
14+
def setUp(self):
15+
pass
16+
1217
def test_01_stop_tomcat(self):
1318
core.skip_ok_unless_installed(tomcat.pkgname())
1419
self.skip_bad_unless(core.state['tomcat.started'], 'Tomcat not started')

0 commit comments

Comments
 (0)