Skip to content

Commit

Permalink
Do not upload coverage report from python 3.8-dev
Browse files Browse the repository at this point in the history
Fixes #132
  • Loading branch information
jbarnoud committed Sep 28, 2018
1 parent 053e486 commit 5eb101c
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ env:
- SKIP_GENERATE_AUTHORS=1
- SKIP_WRITE_GIT_CHANGELOG=1
matrix:
- WITH_SCIPY=true
- WITH_SCIPY=true WITH_CODECOV=true
install:
- pip install --upgrade setuptools pip
- if [[ ${WITH_SCIPY} == true ]]; then pip install scipy; fi
Expand All @@ -18,7 +18,7 @@ install:
script:
- pytest -vv --cov=vermouth vermouth --hypothesis-show-statistics
after_success:
- codecov
- if [[ ${WITH_CODECOV} == true ]]; then codecov; fi
addons:
apt:
packages:
Expand All @@ -45,7 +45,8 @@ jobs:
sudo: true
- python: "3.8-dev"
sudo: true
env: WITH_SCIPY=false
env: WITH_SCIPY=false WITH_CODECOV=false


- stage: docs
python: "3.5"
Expand Down

0 comments on commit 5eb101c

Please sign in to comment.