Merge pull request #225 from ChrisMacNaughton/feature/add-coverage

Add coverage reporting for unit tests
This commit is contained in:
Chris MacNaughton
2020-04-10 09:32:18 +02:00
committed by GitHub

View File

@@ -1,7 +1,9 @@
sudo: true
dist: xenial
language: python
install: pip install tox-travis
install:
- pip install tox-travis
- pip install codecov
matrix:
include:
- name: "Python 3.5"
@@ -18,3 +20,5 @@ matrix:
env: ENV=pep8,py3
script:
- tox -c tox.ini -e $ENV
after_success:
- codecov --verbose --gcov-glob unit_tests/*