From c16a275bd7c04d42ac35ede7fb7be005a479d7dd Mon Sep 17 00:00:00 2001 From: Lucas Wiman Date: Thu, 28 Jun 2018 13:46:39 -0700 Subject: [PATCH] Use --cov-append option in travis build to include coverage data from all tox environments run on the travis environment. Note that it is run as one per python version, but multiple versions of django are tested in each. --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 83a070b..295d123 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,7 +8,7 @@ python: - 3.6 install: pip install tox-travis codecov # positional args ({posargs}) to pass into tox.ini -script: tox -- --cov +script: tox -- --cov --cov-append after_success: codecov deploy: provider: pypi