aboutsummaryrefslogtreecommitdiffstats
path: root/.coveragerc
Commit message (Collapse)AuthorAgeFilesLines
* properly merge pypy coverage with coveragerc pathsPaul Kehrer2016-01-071-0/+1
|
* Use coverage parallel mode and coverage combine to fix pathsDonald Stufft2014-11-131-0/+5
| | | | | | | | | | | | | 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.
* Move the cryptography package into a src/ subdirectoryDonald Stufft2014-11-131-1/+1
| | | | | | | | | | | | | Due to differences in how py.test determines which module to ``import`` the test suite actually runs against the cryptography which is in the *current* directory instead of the cryptography which is installed. The problem essentially boils down to when there is a tests/__init__.py then py.test adds the current directory to the front of the sys.path, causing it to take precedence over the installed location. This means that running the tests relies on the implicit compile that CFFI does instead of testing against what people will actually be runnning, which is the module compiled by setup.py.
* No pragma, no problem!Alex Gaynor2014-11-071-1/+0
|
* Move coverage configuration to the config fileAlexander Gaynor2014-07-281-0/+3
|
* add library switch for windows supportPaul Kehrer2014-01-231-0/+1
| | | | | Temporarily using pragma: no cover on it until we have windows coverage on travis. Windows builds will be done via jenkins for now.
* Ignore abstractproperty.David Reid2013-10-301-0/+1
|
* exclude abstractmethod decorator from coveragePaul Kehrer2013-10-221-0/+4
|
* Enable branch coverageAlex Gaynor2013-10-051-0/+2