Ensure tests and CI are using python 3

This commit is contained in:
englehardt 2019-10-07 23:18:00 -07:00
Родитель a84712988e
Коммит a56bb1d37b
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -24,12 +24,12 @@ before_install:
- "export BOTO_CONFIG=/dev/null" # https://github.com/travis-ci/travis-ci/issues/7940
install:
- echo "y" | ./install.sh
- pip install --upgrade -r requirements.txt -r requirements-dev.txt
- pip3 install --upgrade -r requirements.txt -r requirements-dev.txt
before_script:
- flake8
script:
- cd test
- py.test -s -v --durations=10 $TESTS
- python3 -m pytest -s -v --durations=10 $TESTS
jobs:
include: