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

Allow packages with metafiles that do not include them in the python package to test ok

parent 05f0d3a3
No related branches found
No related tags found
No related merge requests found
...@@ -24,3 +24,8 @@ if [ "${CI_PROJECT_NAME}" == "bob.buildout" ]; then ...@@ -24,3 +24,8 @@ if [ "${CI_PROJECT_NAME}" == "bob.buildout" ]; then
fi fi
run_cmd ${use_pip} install --upgrade --use-wheel --no-index --pre dist/*.whl run_cmd ${use_pip} install --upgrade --use-wheel --no-index --pre dist/*.whl
# Downloads databases that may be missing (not shipped with python pkg)
if [ -x ./bin/bob_dbmanage.py ]; then
run_cmd ./bin/bob_dbmanage.py all download --missing;
fi
File mode changed from 100644 to 100755
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment