Skip to content
Snippets Groups Projects
Commit da769db2 authored by André Anjos's avatar André Anjos :speech_balloon:
Browse files

Allow bob.buildout to test against PyPI

parent 954795e4
Branches
No related tags found
No related merge requests found
......@@ -16,12 +16,12 @@ else
log_info "Using pip: ${use_pip}"
fi
# zc.recipe.egg needs some special installation instructions
#if [ "${CI_PROJECT_NAME}" == "bob.buildout" ]; then
# run_cmd ${use_pip} install --upgrade --no-binary ":all:" zc.recipe.egg
#fi
run_cmd ${use_pip} install --upgrade --use-wheel --no-index --pre dist/*.whl
if [ "${CI_PROJECT_NAME}" == "bob.buildout" ]; then
# zc.buildout requires special handling
run_cmd ${use_pip} install --upgrade --pre dist/*.whl
else
run_cmd ${use_pip} install --upgrade --use-wheel --no-index --pre dist/*.whl
fi
# Downloads databases that may be missing (not shipped with python pkg)
if [ -x ${PREFIX}/bin/bob_dbmanage.py ]; then
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment