Travis: Run style-check with Python 3.5

Doing this with 3.5 only, because the PEP 484 annotation examples in
docs won't compile with old Python versions, causing failures.
This commit is contained in:
Ville Skyttä 2016-07-07 16:21:18 +03:00
parent 8fdbdc3fa9
commit 77f9bbd9cc

View File

@ -31,6 +31,5 @@ install:
- pip install -r test-reqs.txt
before_script: flake8
script:
- if [[ $TRAVIS_PYTHON_VERSION == '3.5' ]]; then make test-async; fi
- if [[ $TRAVIS_PYTHON_VERSION == '3.5' ]]; then make style-check test-async; fi
- if [[ $TRAVIS_PYTHON_VERSION != '3.5' ]]; then make test; fi