summaryrefslogtreecommitdiff
path: root/coverage
Commit message (Expand)AuthorAgeFilesLines
* The DTD is no longer valid. Don't reference it.Ned Batchelder2015-07-221-2/+2
* Add an attribute to the XML report for missed branchesNed Batchelder2015-07-221-0/+4
* Tweak the merge of PR #58Ned Batchelder2015-07-211-7/+6
* Merged in twexler/coverage.py (pull request #58)Ned Batchelder2015-07-211-1/+5
|\
| * Adding DTD_URL constant to coverage.xmlreport, pointing DTD_URL at current co...Ted Wexler2015-07-201-1/+5
* | Data files are now JSON instead of pickles. Fixes #236.Ned Batchelder2015-07-214-61/+61
* | Remove CoverageData(collector=), we'll do it differently soon.Ned Batchelder2015-07-212-14/+2
* | Add docs to CoverageData.Ned Batchelder2015-07-202-84/+158
|/
* This line never cleanly exits the comprehension loop.Ned Batchelder2015-07-201-1/+1
* Check the error messages when we expect exceptionsNed Batchelder2015-07-201-1/+5
* Be more strict when recording plugin namesNed Batchelder2015-07-201-1/+14
* Fix and test add_to_hash: test_data.py now 100% covers data.pyNed Batchelder2015-07-201-3/+13
* CoverageData.plugin_name() can now return None or '' to differentiate unmeasu...Ned Batchelder2015-07-191-18/+25
* CoverageData.lines() and CoverageData.arcs() now distinguish between unmeasur...Ned Batchelder2015-07-192-9/+22
* More testing of CoverageData.updateNed Batchelder2015-07-191-2/+3
* Start preventing incorrect mixing of data.Ned Batchelder2015-07-191-1/+33
* Fix a test that used an unmaintained fake implementation for data.Ned Batchelder2015-07-192-7/+5
* Be sure not to write lines if we are measuring arcsNed Batchelder2015-07-181-2/+2
* Refactor collector->data; data has only one of lines and arcs.Ned Batchelder2015-07-183-73/+52
* Remove __main__ clause here, it doesn't work any more.Ned Batchelder2015-07-161-11/+0
* Change CoverageData.summary() to CoverageData.line_counts()Ned Batchelder2015-07-162-3/+8
* Add a boolean interpretation of CoverageData.Ned Batchelder2015-07-162-2/+6
* PEP8 fixes, but too many to really fixNed Batchelder2015-07-161-5/+5
* Move suffix logic into data.pyNed Batchelder2015-07-153-24/+23
* is better thanNed Batchelder2015-07-142-7/+8
* More simplification of the data apiNed Batchelder2015-07-123-64/+53
* More reworking of the data apiNed Batchelder2015-07-122-19/+20
* Coverage._harvest_data is now Coverage.get_dataNed Batchelder2015-07-111-7/+11
* Include CoverageData in the docsNed Batchelder2015-07-111-4/+7
* Clean up the unused debug argument to CoverageDataFilesNed Batchelder2015-07-112-14/+7
* Split off CoverageDataFiles from CoverageDataNed Batchelder2015-07-112-108/+131
* Analysis doesn't need a Coverage object, it needs a CoverageData object.Ned Batchelder2015-07-112-7/+7
* The use_cache method is no longer supported.Ned Batchelder2015-07-112-24/+10
* If __file__ disagrees with the frame, use the frame info. Fixes #380.Ned Batchelder2015-07-113-9/+28
* Mark an internal method as internal, in prep for revamping the data api.Ned Batchelder2015-07-111-3/+3
* Constructing the plugin is the plugin's businessNed Batchelder2015-07-051-13/+0
* Change how plugins are initialized. No more Plugin. Now coverage_init.Ned Batchelder2015-07-053-51/+65
* Remove the last vestige of FileReporter.nameNed Batchelder2015-07-046-13/+8
* Add some docstringsNed Batchelder2015-07-033-9/+12
* Clean up some pylintNed Batchelder2015-07-032-3/+5
* A little cleanup of multiprocessing monkeypatchingNed Batchelder2015-07-031-3/+4
* The file-rename warning needs to take <string> into account.Ned Batchelder2015-07-031-4/+5
* Exec'ing code gives the wrong filename. A warning now, while we figure it ou...Ned Batchelder2015-07-021-0/+5
* Bump the version number.Ned Batchelder2015-07-011-1/+1
* Fix the urls to the docs.Ned Batchelder2015-07-011-1/+1
* Add missing import. Add assertions for 'No data to report.' in output.Ionel Cristian Maries2015-06-281-1/+1
* Make return codes consistent: 1 for no data and 2 for fail_under. Now the `re...Ionel Cristian Maries2015-06-282-3/+3
* Make the summary return 0 instead.Ionel Cristian Maries2015-06-282-2/+2
* Make fail_under fail if there is no coverage data.Ionel Cristian Maries2015-06-281-1/+1
* A little more plugin debuggingNed Batchelder2015-06-211-3/+18