Skip to content

Commit

Permalink
Run code quality checks only once.
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Howitz committed Dec 2, 2016
1 parent 80193ba commit 1c1c66e
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,27 @@ python:
- 3.5
- 3.6-dev
- pypy
env:
ENVIRON=py
ENVIRON=isort
matrix:
include:
- python: "2.7"
env: ENVIRON=py
- python: "3.4"
env: ENVIRON=py
- python: "3.5"
env: ENVIRON=py
- python: "3.6-dev"
env: ENVIRON=py
- python: "pypy"
env: ENVIRON=py
- python: "3.5"
env: ENVIRON=isort
install:
- pip install tox coveralls coverage
script:
- tox -e py,isort
- tox -e $ENVIRON
after_success:
- coverage combine
- coveralls
Expand Down

0 comments on commit 1c1c66e

Please sign in to comment.