From dbacfa67b40581400d06f2f3de4bc652e31ba437 Mon Sep 17 00:00:00 2001 From: Matthew Peveler Date: Sun, 21 Jul 2019 22:03:28 -0400 Subject: [PATCH] Fix script line to use appropriate version of python --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index f0a30b2..d17adfc 100644 --- a/.travis.yml +++ b/.travis.yml @@ -16,12 +16,12 @@ matrix: - python: nightly install: - - pip install setuptools pytest pytest-cov flake8 python-coveralls + - pip install pytest pytest-cov flake8 python-coveralls - if [ $(python -c "import sys; sys.exit(1 if (sys.version_info >= (3, 5)) else 0)") -eq 1 ]; then pip install flake8-bugbear; fi script: - flake8 - - python3 setup.py test + - python setup.py test after_success: - coveralls