From ac52486274ebf49f4dac1eb8dd0eb5327752313d Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Tue, 26 Jul 2016 14:11:05 +0900 Subject: [PATCH] travis: Do not run flake8 on py26 (not supported) again --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index a2a128d4a..501f427dd 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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