Skip to content

Commit

Permalink
Try to get coverage working on Travis.
Browse files Browse the repository at this point in the history
  • Loading branch information
kalekundert committed May 29, 2020
1 parent 2c8df97 commit 359a836
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,20 @@
language: python

python:
- "3.6"
- "3.7"
- "3.8"

install:
- pip install -U pytest hypothesis pytest-cov coveralls attrs
- pip install .

# Can't imagine why this would matter, but see:
# https://thomas-cokelaer.info/blog/2017/01/pytest-cov-collects-no-data-on-travis/
- touch tests/__init__.py

script:
- pytest tests --cov wellmap

after_success:
- coveralls

0 comments on commit 359a836

Please sign in to comment.