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

This commit is contained in:
Takeshi KOMIYA 2016-07-26 14:00:38 +09:00
parent 8e397d1334
commit bac6fc6d04

View File

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