summaryrefslogtreecommitdiff
path: root/coverage
Commit message (Collapse)AuthorAgeFilesLines
* Add a no-op method to the base class to make branch coverage work with ↵Ned Batchelder2015-02-061-0/+3
| | | | plugins. Thanks, Jessamyn Smith.
* Move stats.errors stuff to reduce repetition and noiseNed Batchelder2015-02-061-15/+4
|
* Switch to 'goto error' style to reduce the number of DECREFs neededNed Batchelder2015-02-061-37/+27
|
* Don't need these includes any moreNed Batchelder2015-02-041-2/+0
|
* Clean up some pylint complaintsNed Batchelder2015-02-021-4/+8
|
* Simplify the plugin selection logic.Ned Batchelder2015-02-011-32/+26
|
* Make process_startup idempotent, to fix #340.Ned Batchelder2015-02-011-5/+24
|
* Wildly experimental multiprocessing support. Covers most of #117.Ned Batchelder2015-01-303-2/+57
|
* Give a reasonable warning for a previous assert. Closes #353.Ned Batchelder2015-01-261-6/+3
|
* Bump the versions; docs now at readthedocsNed Batchelder2015-01-262-5/+6
|
* Keep windows workingNed Batchelder2015-01-251-2/+3
|
* More plugin doc tweaksNed Batchelder2015-01-251-11/+9
|
* More docs about plugins.Ned Batchelder2015-01-251-5/+30
|
* Move flat_rootname to the base classNed Batchelder2015-01-242-19/+12
|
* Delete obsolete attribute.Ned Batchelder2015-01-241-6/+0
|
* Set timid=True automatically for pluginsNed Batchelder2015-01-241-2/+12
| | | | | This is better than asking people to add timid=True to their configs, since this way they won't have to clean it out of their config later.
* Move a helper from plugin.py to misc.pyNed Batchelder2015-01-242-26/+29
|
* Trying to get the doc format and references right.Ned Batchelder2015-01-241-12/+17
|
* Change sysinfo to sys_infoNed Batchelder2015-01-243-6/+6
|
* Plugins can provide sysinfoNed Batchelder2015-01-242-0/+15
|
* Make the two forms of debug output more uniformNed Batchelder2015-01-243-8/+20
|
* info_formatter shouldn't assume it gets a listNed Batchelder2015-01-241-0/+1
|
* Clarify how to use make_file for non-ascii content.Ned Batchelder2015-01-221-4/+8
|
* Bump the versionNed Batchelder2015-01-201-1/+1
|
* XML package_depth configuration option. Thanks, Lex BerezhnyNed Batchelder2015-01-192-0/+4
|
* Fix bad regression: XML report now reports packages again. #235Ned Batchelder2015-01-191-6/+13
|
* More pep8 complianceNed Batchelder2015-01-192-2/+8
|
* Collect all the nudgy environment checks into coverage.envNed Batchelder2015-01-1811-30/+64
|
* Properly deal with .pyc files missing their sources.Ned Batchelder2015-01-181-9/+25
|
* Bump version since we published 4.0a2Ned Batchelder2015-01-171-1/+1
|
* Clean up the module->file logicNed Batchelder2015-01-171-13/+11
|
* When finding the source for a frame, really check if it existsNed Batchelder2015-01-171-5/+12
|
* Use file names with extensions in reports.Ned Batchelder2015-01-172-10/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | --HG-- rename : tests/farm/html/gold_a/a.html => tests/farm/html/gold_a/a_py.html rename : tests/farm/html/gold_b_branch/b.html => tests/farm/html/gold_b_branch/b_py.html rename : tests/farm/html/gold_bom/bom.html => tests/farm/html/gold_bom/bom_py.html rename : tests/farm/html/gold_isolatin1/isolatin1.html => tests/farm/html/gold_isolatin1/isolatin1_py.html rename : tests/farm/html/gold_omit_1/m1.html => tests/farm/html/gold_omit_1/m1_py.html rename : tests/farm/html/gold_omit_1/m2.html => tests/farm/html/gold_omit_1/m2_py.html rename : tests/farm/html/gold_omit_1/m3.html => tests/farm/html/gold_omit_1/m3_py.html rename : tests/farm/html/gold_omit_1/main.html => tests/farm/html/gold_omit_1/main_py.html rename : tests/farm/html/gold_omit_2/m2.html => tests/farm/html/gold_omit_2/m2_py.html rename : tests/farm/html/gold_omit_2/m3.html => tests/farm/html/gold_omit_2/m3_py.html rename : tests/farm/html/gold_omit_2/main.html => tests/farm/html/gold_omit_2/main_py.html rename : tests/farm/html/gold_omit_3/m3.html => tests/farm/html/gold_omit_3/m3_py.html rename : tests/farm/html/gold_omit_3/main.html => tests/farm/html/gold_omit_3/main_py.html rename : tests/farm/html/gold_omit_4/m1.html => tests/farm/html/gold_omit_4/m1_py.html rename : tests/farm/html/gold_omit_4/m3.html => tests/farm/html/gold_omit_4/m3_py.html rename : tests/farm/html/gold_omit_4/main.html => tests/farm/html/gold_omit_4/main_py.html rename : tests/farm/html/gold_omit_5/m1.html => tests/farm/html/gold_omit_5/m1_py.html rename : tests/farm/html/gold_omit_5/main.html => tests/farm/html/gold_omit_5/main_py.html rename : tests/farm/html/gold_other/blah_blah_other.html => tests/farm/html/gold_other/blah_blah_other_py.html rename : tests/farm/html/gold_other/here.html => tests/farm/html/gold_other/here_py.html rename : tests/farm/html/gold_partial/partial.html => tests/farm/html/gold_partial/partial_py.html rename : tests/farm/html/gold_styled/a.html => tests/farm/html/gold_styled/a_py.html rename : tests/farm/html/gold_unicode/unicode.html => tests/farm/html/gold_unicode/unicode_py.html
* Provide early error messages for bad regexes in config. #349Ned Batchelder2015-01-161-8/+21
|
* Pylint didn't like .format(self=self): Argument 'self' passed by position ↵Ned Batchelder2015-01-161-2/+2
| | | | and keyword
* Report empty files as 100% instead of 0%, fixes #345Ned Batchelder2015-01-161-4/+19
|
* Remove unused importsNed Batchelder2015-01-102-5/+1
|
* Move base-class logic from CodeUnit to FileReporterNed Batchelder2015-01-094-52/+59
|
* Report a more useful error if an expression fails.Ned Batchelder2015-01-091-1/+11
|
* Read and write plugin data to .coverageNed Batchelder2015-01-082-9/+20
|
* Bump version to alpha 2Ned Batchelder2015-01-031-1/+1
|
* Start formalizing the FileReporter interface to simplify thingsNed Batchelder2015-01-025-32/+99
|
* Move python source understanding into python.pyNed Batchelder2015-01-017-137/+142
|
* Move code_unit_factory into CoverageNed Batchelder2015-01-013-76/+51
|
* Refactoring FileLocators and codeunit factories, more to come.Ned Batchelder2015-01-011-7/+11
|
* Be a little clearer about when we expect one thing, and when we expect a listNed Batchelder2015-01-013-20/+48
|
* Move Plugins so that plugin.py is just interface definitionsNed Batchelder2015-01-012-38/+38
|
* pep8Ned Batchelder2015-01-011-27/+43
|
* 2015 happy new yearNed Batchelder2015-01-011-1/+1
|
* A few more filenames as %s instead of %rNed Batchelder2014-12-283-3/+3
|