Skip to content

Commit

Permalink
travis use setup.py with no cache
Browse files Browse the repository at this point in the history
  • Loading branch information
mmckerns committed Jun 14, 2021
1 parent a3e97f0 commit 0818e8b
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 -m pip install .
- python setup.py build && python setup.py 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 0818e8b

Please sign in to comment.