summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJosh Marshall <catchjosh@gmail.com>2021-03-30 22:16:20 +0900
committerJosh Marshall <catchjosh@gmail.com>2021-03-30 22:16:20 +0900
commitae4b2dde5e17416700025ea2154a11c557f146bd (patch)
tree7287c6e40c1ee15e97b58706eb0ce76411b95c1d
parent8bbd7c41bf4ba48386c60d104e7d04f15abd5786 (diff)
downloadjsonrpclib-ae4b2dde5e17416700025ea2154a11c557f146bd.tar.gz
Moving coverage filter to run time instead of report time.
-rw-r--r--tox.ini4
1 files changed, 2 insertions, 2 deletions
diff --git a/tox.ini b/tox.ini
index a1bd8b9..aaa5961 100644
--- a/tox.ini
+++ b/tox.ini
@@ -2,5 +2,5 @@
envlist = py35,py36,py37,py38,py39
[testenv]
deps= -rdev-requirements.txt
-commands=coverage run -m pytest tests.py
- coverage report -i jsonrpclib/*.py
+commands=coverage run --source jsonrpclib -m pytest tests.py
+ coverage report