summaryrefslogtreecommitdiff
path: root/coverage
Commit message (Collapse)AuthorAgeFilesLines
* 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 ↵Ned Batchelder2015-07-021-0/+5
| | | | out. Part of #380.
* 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 ↵Ionel Cristian Maries2015-06-282-3/+3
| | | | `report` command will properly report `No data to report` if there's no data.
* 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
|
* Be more specific with PathAliases tests.Ned Batchelder2015-06-161-1/+3
|
* Add more contractsNed Batchelder2015-06-162-4/+3
|
* Be more careful about reading bytecodes. #375Ned Batchelder2015-06-161-2/+14
|
* Correct the comment describing .should_trace_cacheNed Batchelder2015-06-161-3/+8
|
* Be more disciplined about the values in should_trace_cache. #374.Ned Batchelder2015-06-142-9/+22
|
* COVERAGE_DEBUG can set the debug configuration optionsNed Batchelder2015-06-142-2/+5
|
* Debugging plugin wrappersNed Batchelder2015-06-144-6/+157
|
* Remove FileLocator from PathAliases. Now it always produces canonicalized paths.Ned Batchelder2015-06-131-6/+5
|
* Change FileLocator from a class to module-level functionsNed Batchelder2015-06-134-70/+70
|
* Also include plugin_support.py!Ned Batchelder2015-06-131-0/+51
|
* Move plugin support stuff into plugin_support.pyNed Batchelder2015-06-131-48/+1
|
* Tweak up the last mergeNed Batchelder2015-06-071-0/+1
|
* Correct path normalization on Windows: the drive was not normalized ↵Ionel Cristian Mărieș2015-06-061-1/+1
| | | | | | | (different inputs like "c:\asdf" and "C:\asdf" did not return the same path). --HG-- branch : ionelmc/correct-path-normalization-on-windows-th-1433618255921
* PyContracts now uses six, so exclude six during testing.Ned Batchelder2015-06-031-3/+5
|
* Make sure not to call functions with an error set.Ned Batchelder2015-06-031-3/+3
| | | | | Python 3.5 is stricter about getting this right. So we have to call PyErr_Print to print and clear the error before calling the warn function.
* Dict literals changed in 3.5b1Ned Batchelder2015-05-271-2/+3
|
* Remove the module-level singleton functions.Ned Batchelder2015-05-271-61/+0
|
* Seems like I don't need unicode literals any more?Ned Batchelder2015-05-271-2/+0
|
* Not sure why I used 1 in the first place.Ned Batchelder2015-05-271-1/+1
|
* Add a docstringNed Batchelder2015-05-251-0/+1
|
* Normalize measured data's filenames before adding to data.Ned Batchelder2015-05-252-3/+10
|
* Pylint weedingNed Batchelder2015-05-233-6/+2
|
* PyContracts is conditional, but not optionalNed Batchelder2015-05-231-11/+7
|
* Write all annotated files as utf8Ned Batchelder2015-05-191-13/+12
|
* Use more @contract, less assertNed Batchelder2015-05-172-3/+2
|
* Files with incorrect encoding declarations are no longer ignored. #351Ned Batchelder2015-05-172-17/+6
|
* All Python source is Unicode internally.Ned Batchelder2015-05-174-21/+56
| | | | | Unfortunately, this meant hacking around a silly Python 2 restriction (can't compile a Unicode string containing an encoding declaration).
* Use PyContracts so we can declare/enforce parameter and return types.Ned Batchelder2015-05-173-6/+41
| | | | | This commit doesn't add any uses of PyContracts, but gets the machinery in place.