Skip to content

Commit

Permalink
Merge d2dbefd into d6ca2ff
Browse files Browse the repository at this point in the history
  • Loading branch information
gilgamezh committed Apr 6, 2020
2 parents d6ca2ff + d2dbefd commit 87cd87d
Showing 1 changed file with 10 additions and 11 deletions.
21 changes: 10 additions & 11 deletions .travis.yml
@@ -1,32 +1,31 @@
dist: xenial # required for Python >= 3.7
dist: bionic

language: python

python:
- "3.5"
- "3.6"
- "3.7"
- "3.8-dev"
- "3.8"
- "3.8-dev" # 3.8 development branch
install:
- "pip install -r requirements.txt"
- >
if [[ $TRAVIS_PYTHON_VERSION == '3.7' ]]
then
pip install python-coveralls "pytest-cov<2.6.0"
if [[ $TRAVIS_PYTHON_VERSION == '3.8' ]]
then
pip install coveralls pytest-cov
fi
script:
-script:
- >
if [[ $TRAVIS_PYTHON_VERSION == '3.7' ]]
if [[ $TRAVIS_PYTHON_VERSION == '3.8' ]]
then
pytest --cov=fades
else
else
pytest
fi
# report coverage to coveralls.io
after_success:
- >
if [[ $TRAVIS_PYTHON_VERSION == '3.7' ]]
if [[ $TRAVIS_PYTHON_VERSION == '3.8' ]]
then
coveralls
fi
Expand Down

0 comments on commit 87cd87d

Please sign in to comment.