Skip to content

Commit

Permalink
added flake8 to CI and exclude run_doctests.py file itself from coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
jtauber committed Feb 3, 2014
1 parent f5dbe2d commit 4744959
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,11 @@ python:
- "3.3"
# command to install dependencies
install:
- pip install flake8
- pip install coveralls
# command to run tests
script:
- coverage run run_doctests.py
- flake8 .
- coverage run --branch --omit=run_doctests.py run_doctests.py
after_success:
- coveralls

0 comments on commit 4744959

Please sign in to comment.