Switch to Python 3.6 for flake8 runs, re-enable E999 checks

This commit is contained in:
Lukasz Langa
2016-12-21 20:08:36 -08:00
parent 937a3ca3fe
commit 25a46f42be
3 changed files with 5 additions and 5 deletions
+3 -2
View File
@@ -3,7 +3,7 @@ language: python
matrix:
include:
- python: "3.5"
- python: "3.6-dev"
env: TEST_CMD="flake8"
- python: "3.5"
env: TEST_CMD="./tests/mypy_test.py"
@@ -12,7 +12,8 @@ matrix:
install:
# pytype needs py-2.7, mypy needs py-3.2+. Additional logic in runtests.py
- if [[ $TRAVIS_PYTHON_VERSION == '3.5' ]]; then pip install -U git+git://github.com/python/mypy git+git://github.com/dropbox/typed_ast flake8==3.2.1 flake8-bugbear>=16.12.2 flake8-pyi>=16.12.1; fi
- if [[ $TRAVIS_PYTHON_VERSION == '3.6-dev' ]]; then pip install -U flake8==3.2.1 flake8-bugbear>=16.12.2 flake8-pyi>=16.12.2; fi
- if [[ $TRAVIS_PYTHON_VERSION == '3.5' ]]; then pip install -U git+git://github.com/python/mypy git+git://github.com/dropbox/typed_ast; fi
- if [[ $TRAVIS_PYTHON_VERSION == '2.7' ]]; then pip install -U git+git://github.com/google/pytype; fi
script: