Skip to content

Commit e39fed9

Browse files
author
efajardo
committed
Removed the el6 special stuff
1 parent 2406bde commit e39fed9

File tree

2 files changed

+2
-10
lines changed

2 files changed

+2
-10
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
sudo: required
22
env:
33
matrix:
4-
- OS_TYPE=centos OS_VERSION=6 PACKAGES=osg-ce-condor,vo-client-lcmaps-voms,llrun,osg-oasis
4+
- OS_TYPE=centos OS_VERSION=6 PACKAGES=osg-ce-condor,vo-client-lcmaps-voms,llrun
55
- OS_TYPE=centos OS_VERSION=6 PACKAGES=osg-gridftp,lcmaps,lcmaps-db-templates,vo-client-lcmaps-voms,rsv,llrun
66
- OS_TYPE=centos OS_VERSION=7 PACKAGES=osg-ce-condor,vo-client-lcmaps-voms,llrun,singularity-runtime,osg-oasis
77
- OS_TYPE=centos OS_VERSION=7 PACKAGES=osg-gridftp,lcmaps,lcmaps-db-templates,vo-client-lcmaps-voms,rsv,llrun,singularity-runtime,osg-oasis

osgtest/tests/test_38_cvmfs.py

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,6 @@ class TestCvmfs(osgunittest.OSGTestCase):
1010
__cvmfs_image = '/cvmfs/singularity.opensciencegrid.org/opensciencegrid/osg-wn:3.3-el6'
1111
core.config['cvmfs.debug-dirs'] = []
1212

13-
def mountSingularityCVMFSRepo(self, repo):
14-
command = ('mkdir', '-p', '/cvmfs/' + repo)
15-
core.check_system(command, 'Manually creating cvmfs dir')
16-
17-
command = ('mount', '-t', 'cvmfs', 'repo', '/cvmfs/' + repo)
18-
core.check_system(command, 'Manually mounting cvmfs singularity repo')
19-
2013
def debug_cvmfs(self, repo):
2114
temp_dir = tempfile.mkdtemp()
2215
core.config['cvmfs.debug-dirs'].append(temp_dir)
@@ -111,8 +104,7 @@ def test_04_singularity(self):
111104
core.skip_ok_unless_installed('cvmfs')
112105
core.skip_ok_unless_installed('cvmfs-keys', by_dependency=True)
113106
singularity_repo = 'singularity.opensciencegrid.org'
114-
if core.el_release() <= 6:
115-
self.mountSingularityCVMFSRepo(singularity_repo)
107+
116108
command = ('ls', '/cvmfs/' + singularity_repo)
117109
core.check_system(command, "testing cvmfs access to singularity repo")
118110

0 commit comments

Comments
 (0)