Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/tests/.coveragerc
Commit message (Collapse)AuthorAgeFilesLines
* 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 ↵Tim Graham2015-01-171-1/+1
| | | | #20766.
* 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 ↵Tim Graham2014-11-191-1/+1
| | | | coveragerc.
* Made coverage ignore files without associated source code.Ramiro Morales2013-08-261-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 ↵Tim Graham2012-10-111-0/+5
contributing docs. Thanks Pedro Lima for the draft patch.