From 582d89e2f268ab1a72d6b065694760097c270702 Mon Sep 17 00:00:00 2001 From: Mort Yao Date: Sun, 20 May 2018 13:47:28 +0200 Subject: [PATCH] .travis.yml: skip flake8 on python 3.2 --- .travis.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index ed1531b9..9df327b0 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,7 +9,8 @@ python: - "nightly" - "pypy3" before_install: pip install flake8 -before_script: flake8 . --count --select=E901,E999,F821,F822,F823 --show-source --statistics +before_script: + - if [[ $TRAVIS_PYTHON_VERSION != '3.2'* ]]; then flake8 . --count --select=E901,E999,F821,F822,F823 --show-source --statistics; fi script: make test sudo: false notifications: