Skip to content

Commit

Permalink
Fix .travis.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
belerico committed Apr 16, 2020
1 parent f8c97be commit 804296c
Showing 1 changed file with 18 additions and 9 deletions.
27 changes: 18 additions & 9 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,21 +1,30 @@
language: python
dist: xenial
os: linux
install: pip install tox-travis coveralls
jobs:
include:
- language: python
python:
- "3.5"
- "3.6"
- "3.7"
- "3.8"
python: "3.5"
script:
- tox
allow_failures:
- language: python
python: "nightly"
python: "3.6"
script:
- coverage run
- coverage report --fail-under 80 -m
- tox
- language: python
python: "3.7"
script:
- tox
- language: python
python: "3.8"
script:
- tox
allow_failures:
- language: python
python: "nightly"
script:
- coverage run
- coverage report --fail-under 80 -m
after_success:
- coveralls

0 comments on commit 804296c

Please sign in to comment.