.travis.yml: skip flake8 on python 3.2

This commit is contained in:
Mort Yao 2018-05-20 13:47:28 +02:00
parent 074aff5e7d
commit 582d89e2f2
No known key found for this signature in database
GPG Key ID: 07DA00CB78203251

View File

@ -9,7 +9,8 @@ python:
- "nightly"
- "pypy3"
before_install: pip install flake8
before_script: flake8 . --count --select=E901,E999,F821,F822,F823 --show-source --statistics
before_script:
- if [[ $TRAVIS_PYTHON_VERSION != '3.2'* ]]; then flake8 . --count --select=E901,E999,F821,F822,F823 --show-source --statistics; fi
script: make test
sudo: false
notifications: