File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -32,13 +32,15 @@ def test_02_install_packages(self):
32
32
33
33
# HACK: Install Slurm and osg-tested-internal out of development-like repos.
34
34
# SOFTWARE-1733 may one day give us a generalized solution.
35
- devops_repos = ['osg-development' ]
36
- # FIXME: Upon release of OSG 3.5.0, this list does not need to contain osg-development
37
35
if core .osg_release () > '3.4' :
38
- devops_repos += ['devops-itb' ]
36
+ dev_repo = ['devops-itb' ]
37
+ if 'osg-tested-internal' in pkg_repo_dict :
38
+ pkg_repo_dict ['osg-tested-internal' ] += dev_repo
39
+ else :
40
+ dev_repo = ['osg-development' ]
39
41
40
42
if 'osg-tested-internal' in pkg_repo_dict or 'slurm' in pkg_repo_dict :
41
- pkg_repo_dict .update (dict ((x , devops_repos ) for x in core .SLURM_PACKAGES + [ 'osg-tested-internal' ] ))
43
+ pkg_repo_dict .update (dict ((x , core . options . extrarepos + dev_repo ) for x in core .SLURM_PACKAGES ))
42
44
43
45
# HACK: Install x509-scitokens-issuer-client out of development (SOFTWARE-3649)
44
46
if 'xrootd-scitokens' in pkg_repo_dict :
You can’t perform that action at this time.
0 commit comments