Skip to content

Commit 2400fb3

Browse files
committed
Install x509-scitokens-issuer-client out of development for scitokens tests (SOFTWARE-3649)
1 parent 7335d88 commit 2400fb3

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

osgtest/tests/special_install.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,15 @@ def test_02_install_packages(self):
3030
fail_msg = ''
3131
pkg_repo_dict = OrderedDict((x, core.options.extrarepos) for x in core.options.packages)
3232

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.
3535
if 'osg-tested-internal' in pkg_repo_dict or 'slurm' in pkg_repo_dict:
3636
pkg_repo_dict.update(dict((x, ['osg-development']) for x in core.SLURM_PACKAGES))
3737

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+
3842
for pkg, repos in pkg_repo_dict.items():
3943
# Do not try to re-install packages
4044
if core.rpm_is_installed(pkg):

0 commit comments

Comments
 (0)