travis: don't test dilation on py3.4 either

This commit is contained in:
Brian Warner 2018-12-24 23:00:00 -05:00
parent 942a04952f
commit 803aa07f35

View File

@ -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 ;