Skip to content

Commit

Permalink
[ci] replace faulty from url pip install with extras
Browse files Browse the repository at this point in the history
  • Loading branch information
renefritze committed Jul 14, 2020
1 parent 67f4f14 commit e8a78ad
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .ci/gitlab/test_pip_installed.bash
Expand Up @@ -12,7 +12,12 @@ PIP_CLONE_URL="git+${CI_PROJECT_URL}@${CI_COMMIT_SHA}"
# source /tmp/venv/bin/activate
pip install ${PIP_CLONE_URL}
pip uninstall -y pymor
pip install ${PIP_CLONE_URL}#egg=pymor[full]

# this is currently disabled because it erroneously pulls in pyqt5
# pip install ${PIP_CLONE_URL}#egg=pymor[full]
# pip uninstall -y pymor

pip install .[full]
pip uninstall -y pymor
# other requirements are installed from pymor[full]
pip install -r requirements-ci.txt
Expand Down

0 comments on commit e8a78ad

Please sign in to comment.