From 2e62316a3bac1f56d8bb1ea871310e965c1cf7b2 Mon Sep 17 00:00:00 2001 From: Chase Roberts Date: Mon, 20 Jul 2020 11:30:37 -0700 Subject: [PATCH 1/2] Update .travis.yml --- .travis.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 1b739852b..5274c6c83 100644 --- a/.travis.yml +++ b/.travis.yml @@ -11,10 +11,14 @@ python: install: - pip install -r requirements.txt - pip install -r requirements_travis.txt - - pip install pylint + - pip install pylint pytest-cov codecov + - pip install # command to run tests script: - pylint ./tensornetwork/ - pytype ./tensornetwork -x **/*_test.py - - pytest + - pytest --cov=./ - python3 setup.py build + +after_success: + - codecov From 00c8edd9fbc3d4772157c565ac6544abac45ec14 Mon Sep 17 00:00:00 2001 From: Chase Roberts Date: Mon, 20 Jul 2020 11:32:07 -0700 Subject: [PATCH 2/2] Update .travis.yml --- .travis.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 5274c6c83..15606b0e9 100644 --- a/.travis.yml +++ b/.travis.yml @@ -12,7 +12,6 @@ install: - pip install -r requirements.txt - pip install -r requirements_travis.txt - pip install pylint pytest-cov codecov - - pip install # command to run tests script: - pylint ./tensornetwork/