summaryrefslogtreecommitdiff
path: root/coverage
Commit message (Collapse)AuthorAgeFilesLines
* Paperwork for 4.5.3Ned Batchelder2019-03-091-1/+1
|
* Bump versionNed Batchelder2018-11-121-1/+1
|
* Making 4.5.2Ned Batchelder2018-11-121-1/+1
|
* Python 3.8 will optimize away "while True:"Ned Batchelder2018-11-122-0/+23
| | | | (cherry picked from commit e5dcb933ab791206040a849eacd726ffe40c348a)
* Canonicalize the XML outputNed Batchelder2018-11-121-5/+24
| | | | | | | | | | | | https://bugs.python.org/issue34160 added retaining the user's attribute order to the XML output, which removed the sorting that used to happen. This broke our XML tests, which compare against saved gold files. This adds in a rough-and-ready canonicalization to avoid the problem. Maybe the core devs will eventually support a sort_attributes option, and I can get rid of this. (cherry picked from commit c376209f35331b358e59c79ed3537a2ed920d677)
* Adapt to 3.8's way of tracing decorated functionsNed Batchelder2018-11-032-7/+30
| | | | (cherry picked from commit d8f1d925dc0aa4908f3f5a1b965f671bcf1b5ba6)
* Move fiddly fnmatch logic into its own testable functionNed Batchelder2018-11-011-25/+37
| | | | (cherry picked from commit 56b9c7e4db40df6515d4ca5d913cb4678da2b753)
* Update/fix help for --rcfileDaniel Hahler2018-10-311-1/+4
| | | | (cherry picked from commit ef5e1e4ba8200a9ff0656ece40e11ed3be67ac92)
* Bump the version numberNed Batchelder2018-10-061-1/+1
|
* Finally jumps back to exiting linesNed Batchelder2018-10-062-9/+48
| | | | | | | | In Python 3.8, when a finally clause is run because a line in the try block is exiting the block, the exiting line is visited again after the finally block. (cherry picked from commit 04ff188349df84f73167108314e9698059830279)
* Python 3.8 uses Constant nodes in the ASTNed Batchelder2018-10-061-1/+1
| | | | (cherry picked from commit cf7e8717d73e638d92838f8534712351dda9e0f1)
* Python 3.6 changed lnotab to signed bytesNed Batchelder2018-10-061-0/+2
| | | | (cherry picked from commit 5aca5af02423f37ec7f4a3a02849e74c54b5ccf1)
* In 3.7, namespace modules can have: mod.__file__ is NoneNed Batchelder2018-10-042-8/+17
| | | | Backport of c9f4f661ccb7decb55055d80a1e9a1cbb825b27f
* Adapt to the 3.7.0b3 change in -m sys.path[0] behaviorNed Batchelder2018-10-041-1/+9
| | | | (cherry picked from commit fec75c18a87e8acf8a0d4f978b2ef4e1cea755de)
* Making 4.5.1Ned Batchelder2018-02-101-1/+1
|
* A little moreNed Batchelder2018-02-101-0/+3
|
* Add a warning about plugins potentially interfering with coverage ↵Ned Batchelder2018-02-101-0/+10
| | | | measurement. Learned from #637
* Configurer plugins should be reported by --debug=sysNed Batchelder2018-02-101-7/+11
|
* Don't ask all plugins about executable files, only ask file tracersNed Batchelder2018-02-101-1/+1
|
* Oops, omitting inside a source package didn't work. Now it does. #638Ned Batchelder2018-02-101-3/+1
|
* Properly handle empty decorated functions in 3.7. #640Ned Batchelder2018-02-091-6/+7
|
* TypoNed Batchelder2018-02-041-1/+1
|
* Bump version and improve notes about how to bump versionsNed Batchelder2018-02-031-1/+1
|
* Version 4.5 paperworkNed Batchelder2018-02-031-1/+1
|
* Simplify the aliases structureNed Batchelder2018-01-231-4/+4
|
* Ensure mapped paths use the separator of the result. #618Ned Batchelder2018-01-221-2/+1
|
* Raise an error if combine can't find usable data files. #629Ned Batchelder2018-01-211-0/+5
|
* fail_under can now be a float. #631.Ned Batchelder2018-01-213-19/+14
|
* Don't confuse run-include with report-include (and also omit). Fixes #621 ↵Ned Batchelder2018-01-201-10/+4
| | | | and #622.
* Don't ever create HTML filenames longer than ~200 chars. Fixes #627.Ned Batchelder2018-01-201-1/+9
|
* The config plug-ins are a new feature, so the next version is at least 4.5Ned Batchelder2018-01-141-1/+1
|
* Fine tune some moreNed Batchelder2018-01-131-1/+1
|
* Fine-tune the 3.7 decisionsNed Batchelder2018-01-131-1/+1
|
* Python 3.7 tweaked the layout of .pyc filesNed Batchelder2018-01-101-5/+14
|
* A new kind of plug-in: configurers. #563Ned Batchelder2018-01-064-63/+140
|
* Correct a docstring.Ned Batchelder2017-12-261-1/+1
|
* Pylint 1.8.1, and fix its new warningsNed Batchelder2017-12-232-1/+2
|
* Remove an unneeded callNed Batchelder2017-12-231-3/+1
|
* Commented-out debugging of pytracerNed Batchelder2017-11-241-4/+25
|
* Scooch version to 4.4.3Ned Batchelder2017-11-051-1/+1
|
* Version 4.4.2 prepNed Batchelder2017-11-041-1/+1
|
* Another approach to solving the 'dictionary changed size during iteration' ↵Ned Batchelder2017-11-042-5/+28
| | | | problem
* More info when _collectors is surprisingNed Batchelder2017-11-041-0/+7
|
* Root is acceptable as a combining path (the manylinux tests end up with one ↵Ned Batchelder2017-10-261-2/+10
| | | | of these)
* Add the latest warning to the docs, and give them consistent punctuationNed Batchelder2017-10-241-1/+1
|
* Clean up and credit for #265 and #101Ned Batchelder2017-10-241-2/+5
|
* Make the warning about --include and --source be a real warningNed Batchelder2017-10-241-1/+1
|
* Move the --source and --include check so it's only during 'run'Ned Batchelder2017-10-241-2/+3
|
* * --source and --include are mutually exclusive (take 2) #265loic@dachary.org2017-01-073-18/+34
| | | | | close #265 close #101
* Explicitly specified secondary config files are properly read. #588Ned Batchelder2017-10-211-26/+56
|