Skip to content

Commit

Permalink
Send coverage data on build success
Browse files Browse the repository at this point in the history
  • Loading branch information
oloaP committed Mar 17, 2017
1 parent c66189e commit 6bb6479
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,10 @@ python:
- "3.5"
# command to install dependencies
install:
- pip install -r requirements.txt
- pip install coveralls
- pip install -r requirements.txt
- pip install coveralls
# command to run tests
script: coverage3 run --source=rateItSeven --omit="rateItSeven/legacy/*" setup.py test
script:
- coverage3 run --source=rateItSeven --omit="rateItSeven/legacy/*" setup.py test
after_success:
- coveralls

0 comments on commit 6bb6479

Please sign in to comment.