We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9d725c9 commit 7c8f92cCopy full SHA for 7c8f92c
1 file changed
tests/Jenkins/utilities.sh
@@ -297,8 +297,9 @@ installDIRAC() {
297
298
if [[ -n "${INSTALLATION_BRANCH}" ]]; then
299
# Use this for (e.g.) running backward-compatibility tests
300
- echo "pip-installing DIRAC from git+https://github.com/DIRACGrid/DIRAC.git@${INSTALLATION_BRANCH}#egg=DIRAC[client]"
301
- pip install "git+https://github.com/DIRACGrid/DIRAC.git@${INSTALLATION_BRANCH}#egg=DIRAC[client]"
+ dirac_spec="DIRAC[client] @ git+https://github.com/DIRACGrid/DIRAC.git@${INSTALLATION_BRANCH}"
+ echo "pip-installing DIRAC from $dirac_spec"
302
+ pip install "$dirac_spec"
303
else
304
for module_path in "${ALTERNATIVE_MODULES[@]}"; do
305
# Special handling for DIRAC with DIRACCommon subdirectory
0 commit comments