diff options
author | Daniel Hahler <github@thequod.de> | 2018-10-30 13:18:52 +0100 |
---|---|---|
committer | Chris Dent <chris.dent@gmail.com> | 2018-10-30 12:18:52 +0000 |
commit | 495ff974d1a972f3751bd6d142813f326bc3f1c1 (patch) | |
tree | 90e7f4856f2ba2243cad517d0c778e4e1c34e09c /tox.ini | |
parent | 36e5b8bd16a6063ec654faf04541f3a20d19f7fe (diff) | |
download | paste-git-495ff974d1a972f3751bd6d142813f326bc3f1c1.tar.gz |
Enable coverage reporting via codecov (#10)
Diffstat (limited to 'tox.ini')
-rw-r--r-- | tox.ini | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -2,8 +2,13 @@ envlist = py27, py35, py36, py37, pypy [testenv] +# For performance, but also for using "source" with coveragepy (https://github.com/nedbat/coveragepy/issues/268). +usedevelop = True deps = pytest - pytest-cov + coverage: coverage + coverage: pytest-cov +setenv = + coverage: PYTEST_ADDOPTS=--cov --cov-report=term-missing commands = py.test {posargs} |