Skip to content

Commit

Permalink
coveralls
Browse files Browse the repository at this point in the history
  • Loading branch information
elbeejay committed Mar 30, 2020
1 parent 600d0a3 commit 9e5c418
Showing 1 changed file with 13 additions and 5 deletions.
18 changes: 13 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,20 @@ python:
# command to install dependencies
install:
- pip install pytest
- pip install pytest-cov
- pip install coveralls
# command to run tests
script:
- python setup.py install
- pytest --cov=pyDeltaRCM_WMT/
- pytest

after_success:
- coveralls
jobs:
include:
- stage: coverage
python: "3.8"
install:
- pip install -r requirements.txt
- pip install pytest
- pip install pytest-cov
- pip install coveralls
script: pytest --cov=pyDeltaRCM_WMT/
after_success:
- coveralls

0 comments on commit 9e5c418

Please sign in to comment.