Skip to content
This repository has been archived by the owner on Mar 12, 2019. It is now read-only.

Commit

Permalink
Fix the lack of coverage report on coveralls.io
Browse files Browse the repository at this point in the history
It turns out the docs target cleans out the environment before it does
its thing, which results in a deleted coverage report file.

Coveralls gets v angry in this situation.
  • Loading branch information
marvinpinto committed Mar 18, 2016
1 parent be36149 commit ecd11b8
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .travis.yml
Expand Up @@ -17,13 +17,16 @@ install:
- ./env/bin/pip install coveralls

script:
- 'make docs'
- make checkstyle
- make test
- make docs

after_success:
- ./env/bin/coveralls

before_deploy:
- 'make docs'

deploy:
- provider: pypi
user: marvinpinto
Expand Down

0 comments on commit ecd11b8

Please sign in to comment.