diff --git a/gitlab/before_test.sh b/gitlab/before_test.sh index 659479df22b972c99ed07063a0387bbc1ca46e84..165784eb5e829667cff292e01bf29c789303a6c6 100755 --- a/gitlab/before_test.sh +++ b/gitlab/before_test.sh @@ -16,13 +16,13 @@ else log_info "Using pip: ${use_pip}" fi +# zc.recipe.egg needs some special installation instructions if [ "${CI_PROJECT_NAME}" == "bob.buildout" ]; then - # zc.buildout requires special handling - run_cmd ${use_pip} install --pre dist/*.whl -else - run_cmd ${use_pip} install --upgrade --use-wheel --no-index --pre dist/*.whl + run_cmd ${use_pip} install --no-binary ":all:" zc.recipe.egg fi +run_cmd ${use_pip} install --use-wheel --no-index --pre dist/*.whl + # Downloads databases that may be missing (not shipped with python pkg) if [ -x ${PREFIX}/bin/bob_dbmanage.py ]; then run_cmd ${PREFIX}/bin/bob_dbmanage.py all download --missing;