Fix script line to use appropriate version of python

This commit is contained in:
Matthew Peveler
2019-07-21 22:03:28 -04:00
parent 36fd197da8
commit dbacfa67b4
+2 -2
View File
@@ -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