From 803aa07f35df4244eeca7c08a62270fb4e135357 Mon Sep 17 00:00:00 2001 From: Brian Warner Date: Mon, 24 Dec 2018 23:00:00 -0500 Subject: [PATCH] travis: don't test dilation on py3.4 either --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index adfc4c5..fcfc1d4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -17,7 +17,7 @@ before_script: flake8 *.py src --count --select=E901,E999,F821,F822,F823 --statistics ; fi script: - - if [[ $TRAVIS_PYTHON_VERSION == 2.7 ]]; then + - if [[ $TRAVIS_PYTHON_VERSION == 2.7 || $TRAVIS_PYTHON_VERSION == 3.4 ]]; then tox -e no-dilate ; else tox -e coverage ;