diff --git a/.travis.yml b/.travis.yml index 1b739852b..15606b0e9 100644 --- a/.travis.yml +++ b/.travis.yml @@ -11,10 +11,13 @@ python: install: - pip install -r requirements.txt - pip install -r requirements_travis.txt - - pip install pylint + - pip install pylint pytest-cov codecov # command to run tests script: - pylint ./tensornetwork/ - pytype ./tensornetwork -x **/*_test.py - - pytest + - pytest --cov=./ - python3 setup.py build + +after_success: + - codecov