Skip to content

Commit

Permalink
CI: pin pyflakes to a recent version + update ignores
Browse files Browse the repository at this point in the history
  • Loading branch information
pv committed Mar 1, 2016
1 parent ed5c75c commit 1a27a72
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 @@ -11,9 +11,9 @@ matrix:
- NUMPYSPEC=numpy
before_install:
- pip install pep8==1.7.0
- pip install pyflakes
- pip install pyflakes==1.1.0
script:
- PYFLAKES_NODOCTEST=1 pyflakes scipy benchmarks/benchmarks | grep -E -v 'unable to detect undefined names|assigned to but never used|imported but unused|redefinition of unused' > test.out; cat test.out; test \! -s test.out
- PYFLAKES_NODOCTEST=1 pyflakes scipy benchmarks/benchmarks | grep -E -v 'unable to detect undefined names|assigned to but never used|imported but unused|redefinition of unused|may be undefined, or defined from star imports' > test.out; cat test.out; test \! -s test.out
- pep8 scipy benchmarks/benchmarks
- python: 2.7
env:
Expand Down

0 comments on commit 1a27a72

Please sign in to comment.