Skip to content

Commit

Permalink
Travis CI: Fixup use of requirements files
Browse files Browse the repository at this point in the history
- [x] dev-requirements.txt was replaced with requirements-tests.txt.
- [x] The linters and their plugins weren't being installed.
  • Loading branch information
nbraud committed Apr 2, 2019
1 parent 891ef58 commit 7c95b95
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@ before_install:
install:
- pip install --upgrade-strategy eager -U pip wheel setuptools
- pip install -e .;
- pip install --upgrade-strategy eager -U -r dev-requirements.txt
- pip install --upgrade-strategy eager -U -r requirements-lint.txt
- pip install --upgrade-strategy eager -U -r requirements-tests.txt
- # Lints aren't run under pypy
'[[ "$PYTHON" =~ pypy-* ]] || pip install --upgrade-strategy eager -U -r lint-requirements.txt'
- pip list
Expand Down

0 comments on commit 7c95b95

Please sign in to comment.