File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -30,11 +30,15 @@ def test_02_install_packages(self):
30
30
fail_msg = ''
31
31
pkg_repo_dict = OrderedDict ((x , core .options .extrarepos ) for x in core .options .packages )
32
32
33
- # FIXME : Install slurm out of contrib if we're running 'All' tests until
34
- # SOFTWARE-1733 gives us a generalized solution
33
+ # HACK : Install slurm out of development if we're running 'All' tests.
34
+ # SOFTWARE-1733 may one day give us a generalized solution.
35
35
if 'osg-tested-internal' in pkg_repo_dict or 'slurm' in pkg_repo_dict :
36
36
pkg_repo_dict .update (dict ((x , ['osg-development' ]) for x in core .SLURM_PACKAGES ))
37
37
38
+ # HACK: Install x509-scitokens-issuer-client out of development (SOFTWARE-3649)
39
+ if 'xrootd-scitokens' in pkg_repo_dict :
40
+ pkg_repo_dict ["x509-scitokens-issuer-client" ] = ["osg-development" ]
41
+
38
42
for pkg , repos in pkg_repo_dict .items ():
39
43
# Do not try to re-install packages
40
44
if core .rpm_is_installed (pkg ):
You can’t perform that action at this time.
0 commit comments