Skip to content

Commit

Permalink
travis use pip and not cache
Browse files Browse the repository at this point in the history
  • Loading branch information
mmckerns committed Jun 14, 2021
1 parent ff5b487 commit 88fc59d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,14 +42,14 @@ matrix:
fast_finish: true

cache:
pip: true
pip: false

before_install:
- set -e # fail on any error
- if [[ $COVERAGE == "true" ]]; then pip install coverage; fi

install:
- python setup.py build && python setup.py install
- pip install .

script:
- for test in tests/__init__.py; do echo $test ; if [[ $COVERAGE == "true" ]]; then coverage run -a $test > /dev/null; else python $test > /dev/null; fi ; done
Expand Down

0 comments on commit 88fc59d

Please sign in to comment.