Skip to content

Commit 1c5bbdf

Browse files
committed
Merge pull request #29 from pyflakes/flake8
Avoid running flake8 under nightly
2 parents 39fe2a5 + 5f6aa0b commit 1c5bbdf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ install:
1111
- pip install flake8==2.1.0 pep8==1.5.6
1212
- python setup.py install
1313
- pip list
14-
- flake8 --version
14+
- if [ "$TRAVIS_PYTHON_VERSION" != "nightly" ]; then flake8 --version; fi
1515
script:
1616
- python setup.py test -q
17-
- flake8 pyflakes setup.py
17+
- if [ "$TRAVIS_PYTHON_VERSION" != "nightly" ]; then flake8 pyflakes setup.py; fi
1818
matrix:
1919
allow_failures:
2020
- python: pypy

0 commit comments

Comments
 (0)