summaryrefslogtreecommitdiff
path: root/tests/.coveragerc
Commit message (Collapse)AuthorAgeFilesLines
* Restored multiprocessing concurrency on coverage.py settingsMarc Gibbons2023-04-271-0/+2
| | | | | | | | | | | | | * 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).
* Reverted "Fixed #33213 -- Doc'd testing code coverage in parallel and used it."Mariusz Felisiak2023-03-151-2/+0
| | | | | | This reverts commit 69352d85fa8412865db9e0c7f177b333c0eac3e2. Test coverage for async methods was no longer calculated with this change.
* Fixed #33213 -- Doc'd testing code coverage in parallel and used it.Paolo Melchiorre2023-02-111-0/+2
|
* Fixed #25209 -- Removed parallel=True coverage optionPeter Schmidt2015-08-041-1/+0
|
* Improved coverage configurationMarkus Holtermann2015-06-231-1/+8
| | | | | | | 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".
* Removed FastCGI support per deprecation timeline; refs #20766.Tim Graham2015-01-171-1/+1
|
* Removed django.utils.unittest per deprecation timeline.Tim Graham2015-01-171-1/+1
|
* Removed django.utils.importlib per deprecation timeline.Tim Graham2015-01-171-1/+1
|
* Removed django.utils.dictconfig per deprecation timeline.Tim Graham2015-01-171-1/+1
|
* Removed nonexistent module django.test._doctest from coveragerc.Tim Graham2014-11-191-1/+1
|
* Made coverage ignore files without associated source code.Ramiro Morales2013-08-251-0/+3
| | | | | | | | | | 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.
* More import removalsClaude Paroz2013-06-291-1/+1
| | | | | | Following the series of commits removing deprecated features in Django 1.7, here are some more unneeded imports removed and other minor cleanups.
* Adjusted coveragercFlorian Apolloner2013-02-261-1/+1
|
* Fixed #16817 - Added a guide of code coverage to contributing docs.Tim Graham2012-10-111-0/+5
Thanks Pedro Lima for the draft patch.