Skip to content

Commit 6e25728

Browse files
committed
Don't run coveralls for flake8
1 parent 6df0020 commit 6e25728

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.travis.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,9 @@ notifications:
6868
6969

7070
after_success:
71-
- if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then pip install "idna < 2.8"; fi
72-
- pip install coveralls
73-
- coveralls
71+
- |
72+
if [[ "$TOXENV" != "flake8" ]]; then
73+
if [[ "$TRAVIS_PYTHON_VERSION" == "2.6" ]]; then pip install "idna < 2.8"; fi
74+
pip install coveralls
75+
coveralls
76+
fi

0 commit comments

Comments
 (0)