aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.coveragerc3
-rw-r--r--tox.ini2
2 files changed, 4 insertions, 1 deletions
diff --git a/.coveragerc b/.coveragerc
index 03fc621e..58a1992d 100644
--- a/.coveragerc
+++ b/.coveragerc
@@ -1,5 +1,8 @@
[run]
branch = True
+source =
+ cryptography/
+ tests/
[report]
exclude_lines =
diff --git a/tox.ini b/tox.ini
index ef5e46d7..98cd8a68 100644
--- a/tox.ini
+++ b/tox.ini
@@ -11,7 +11,7 @@ deps =
pytest
./vectors
commands =
- coverage run --source=cryptography/,tests/ -m pytest --capture=no --strict {posargs}
+ coverage run -m pytest --capture=no --strict {posargs}
coverage report -m
[testenv:docs]