Skip to content

Commit

Permalink
Update .travis.yml
Browse files Browse the repository at this point in the history
Added coverage reporter
  • Loading branch information
LaserPhaser committed Apr 19, 2019
1 parent fdcae3d commit 33ce160
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,19 @@ python:
- 3.5
- 3.4
- 2.7
install: pip install -U tox-travis
script: tox

install:
- pip install -U tox-travis
- pip install codecov

script:
- tox
- coverage run --source ./pytest_slack -m py.test tests
- coverage report -m

after_success:
- codecov

deploy:
provider: pypi
distributions: sdist bdist_wheel
Expand Down

0 comments on commit 33ce160

Please sign in to comment.