[CI] Collect code coverage stats from unit tests

This commit is contained in:
yuvipanda
2018-07-11 13:15:49 -07:00
parent a1ef5e3205
commit 81d59ad02e
2 changed files with 8 additions and 1 deletions

View File

@@ -29,7 +29,12 @@ jobs:
- run:
name: run unit tests
command: |
py.test tests/
py.test --cov=tljh tests/
- run:
name: upload code coverage stats
command: |
codecov
integration-test:
docker:

View File

@@ -1 +1,3 @@
pytest
pytest-cov
codecov