summaryrefslogtreecommitdiff
path: root/tests/.coveragerc
AgeCommit message (Collapse)Author
2023-09-07Fixed #34810 -- Measured test coverage on django-admin commands.Jacob Walls
2023-04-27Restored multiprocessing concurrency on coverage.py settingsMarc Gibbons
* Revert "Reverted "Fixed #33213 -- Doc'd testing code coverage in parallel and used it."" This reverts commit 78da5ca0c1f2ab3201f8f6cd629e80d805ea023d. * Restored coverage multiprocess concurrency with threads Investigating https://github.com/nedbat/coveragepy/issues/1585 revealed that thread tracing gets disabled when passing `concurrency = multiprocessing`. Adding `thread` restores it, and ensures that the `auser()` is reported as covered since the test suite uses `AsyncToSync` to execute this middleware (which spawns threads).
2023-03-15Reverted "Fixed #33213 -- Doc'd testing code coverage in parallel and used it."Mariusz Felisiak
This reverts commit 69352d85fa8412865db9e0c7f177b333c0eac3e2. Test coverage for async methods was no longer calculated with this change.
2023-02-11Fixed #33213 -- Doc'd testing code coverage in parallel and used it.Paolo Melchiorre
2015-08-04Fixed #25209 -- Removed parallel=True coverage optionPeter Schmidt
2015-06-23Improved coverage configurationMarkus Holtermann
By providing a .coveragerc file with all default settings, users only have to execute "coverage run ./runtests.py" without the need to specify all the possible flags. The same applies to "coverage html" and "coverage xml".
2015-01-17Removed FastCGI support per deprecation timeline; refs #20766.Tim Graham
2015-01-17Removed django.utils.unittest per deprecation timeline.Tim Graham
2015-01-17Removed django.utils.importlib per deprecation timeline.Tim Graham
2015-01-17Removed django.utils.dictconfig per deprecation timeline.Tim Graham
2014-11-19Removed nonexistent module django.test._doctest from coveragerc.Tim Graham
2013-08-25Made coverage ignore files without associated source code.Ramiro Morales
This only affests reporting not data collection and allows coverage.py to succesfully finish the generation of e.g. the HTML report. Cases of code whose execution data is collected during the run phase but for which no associated source code files can be found at the reporting phase include tests with egg files and Python module files created at test execution-time.
2013-06-29More import removalsClaude Paroz
Following the series of commits removing deprecated features in Django 1.7, here are some more unneeded imports removed and other minor cleanups.
2013-02-26Adjusted coveragercFlorian Apolloner
2012-10-11Fixed #16817 - Added a guide of code coverage to contributing docs.Tim Graham
Thanks Pedro Lima for the draft patch.