Skip to content

Commit

Permalink
[CI] add code coverage (via Coveralls)
Browse files Browse the repository at this point in the history
  • Loading branch information
olivierphi committed Sep 27, 2018
1 parent f8eb53a commit 6e58509
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ python:
- "3.6"
- "3.7-dev"
install:
- pip install -U pytest pylint mypy "black==18.6b4" pytest-pylint pytest-mypy pytest-black
- pip install -U pytest pylint mypy "black==18.6b4"
- pip install -U pytest-pylint pytest-mypy pytest-black
# Code coverage:
- pip install -U coverage python-coveralls pytest-cov
script:
- make test
- pytest --pylint --black --mypy --cov pymessagebus --cov-report term-missing pymessagebus
after_success:
- coveralls

0 comments on commit 6e58509

Please sign in to comment.