travis: Do not run flake8 on py26 (not supported) again

This commit is contained in:
Takeshi KOMIYA 2016-07-26 14:11:05 +09:00
parent bac6fc6d04
commit ac52486274

View File

@ -30,7 +30,7 @@ install:
- pip install docutils==$DOCUTILS
- pip install -r test-reqs.txt
before_script:
- if [[ $TRAVIS_PYTHON_VERSION != '2.6' ]]; flake8; fi
- if [[ $TRAVIS_PYTHON_VERSION != '2.6' ]]; then flake8; fi
script:
- if [[ $TRAVIS_PYTHON_VERSION == '3.5' ]]; then make test-async; fi
- if [[ $TRAVIS_PYTHON_VERSION != '3.5' ]]; then make test; fi