From 62143e47077b8df78e926da5c8f027d8f01ab281 Mon Sep 17 00:00:00 2001 From: Donald Stufft Date: Thu, 13 Nov 2014 08:17:36 -0500 Subject: Use coverage parallel mode and coverage combine to fix paths When using coverage.py with a project installed into site-packages instead of in the current directory you end up with paths like .tox/py34/lib/python3.4/site-packages/cryptography/__init__.py which is less than ideal (and may cause issues when aggregating coverage over multiple versions of Python). Switching coverage.py into parallel-mode will have it write a .coverage.* file instead of a .coverage file, which can then be "combined" into a .coverage file using coverage combine. When coverage.py does the combine step it will collapse the .tox/*/lib/python*/site-packages/cryptography paths into src/cryptography. --- .coveragerc | 5 +++++ 1 file changed, 5 insertions(+) (limited to '.coveragerc') diff --git a/.coveragerc b/.coveragerc index aa69fd4f..a0a57b33 100644 --- a/.coveragerc +++ b/.coveragerc @@ -4,6 +4,11 @@ source = cryptography tests/ +[paths] +source = + src/cryptography + .tox/*/lib/python*/site-packages/cryptography + [report] exclude_lines = @abc.abstractmethod -- cgit v1.2.3