Skip to content

Commit

Permalink
Separate the pip install lines because pip can't handle dependencies.
Browse files Browse the repository at this point in the history
  • Loading branch information
jaqx0r committed Jan 27, 2020
1 parent cdb4164 commit 5ec4c06
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,10 @@ jobs:
- python/install-deps
# CI-only deps, not in requirements.txt
# TODO() remove coverage pinning when https://github.com/z4r/python-coveralls/issues/73 fixed.
- run: pip install --user coverage==4.5.4 python-coveralls yapf pylint
# pip can't install multiple packages if there's a dependency between some: https://github.com/pypa/pip/issues/1386
- run: |
pip install --user coverage==4.5.4
pip install --user python-coveralls yapf pylint
- run: export PATH=$PATH:$(python -m site --user-base)/bin
- python/save-cache
- run: python setup.py test --addopts "-v --durations=0 --junitxml=test-results/junit.xml --cov=nss_cache --cov-report term-missing --cov-report html"
Expand Down

0 comments on commit 5ec4c06

Please sign in to comment.