From 86e94e5db1223fc9f62b2e44db6384dabea344fb Mon Sep 17 00:00:00 2001 From: evandrocoan Date: Sun, 8 Jul 2018 00:01:15 -0300 Subject: [PATCH] Attempt to fix coveralls reporting the user home folder coverage.py: exclude files https://stackoverflow.com/questions/1559424/coverage-py-exclude-files --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index 1f64c59..1224a19 100644 --- a/.travis.yml +++ b/.travis.yml @@ -30,6 +30,7 @@ script: - if [ "$TRAVIS_OS_NAME" == "linux" ]; then coverage run source/unit_tests.py; + coverage report --omit=home; codecov; coveralls; fi