Skip to content

Commit

Permalink
Enforce pyflakes on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
hugovk committed Jan 28, 2018
1 parent dead137 commit 58889e5
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 @@ -20,18 +20,18 @@ branches:

install:
- pip install -r requirements.txt
- pip install coveralls
- pip install coveralls pyflakes

script:
- coverage run --append --source scripts test/test_gpo_member_photos.py
- coverage run --append --source scripts scripts/missing.py
- pyflakes scripts/*.py

after_success:
- coverage report
- coveralls
- pip install pycodestyle
- pycodestyle scripts/*.py
- pyflakes scripts/*.py

matrix:
fast_finish: true

0 comments on commit 58889e5

Please sign in to comment.