summaryrefslogtreecommitdiff
path: root/tests
Commit message (Collapse)AuthorAgeFilesLines
* Fix a test that still thought we were on bitbucketNed Batchelder2019-03-091-1/+1
|
* One last decorator test change for 3.8Ned Batchelder2018-11-121-2/+10
| | | | (cherry picked from commit ef6db13296f8450e30601490ee33a9643c9db0cf)
* Update an HTML gold test due to new peephole optimizations (adapted from master)Ned Batchelder2018-11-124-54/+50
|
* Python 3.8 will optimize away "while True:"Ned Batchelder2018-11-122-10/+29
| | | | (cherry picked from commit e5dcb933ab791206040a849eacd726ffe40c348a)
* Keep 2.6 workingNed Batchelder2018-11-031-2/+2
|
* Adapt to 3.8's way of tracing decorated functionsNed Batchelder2018-11-032-7/+26
| | | | (cherry picked from commit d8f1d925dc0aa4908f3f5a1b965f671bcf1b5ba6)
* Move fiddly fnmatch logic into its own testable functionNed Batchelder2018-11-011-1/+50
| | | | (cherry picked from commit 56b9c7e4db40df6515d4ca5d913cb4678da2b753)
* Use a new event loopNed Batchelder2018-10-311-2/+2
| | | | (cherry picked from commit 85a878e76bad95c01d50e2533a7653b8e7699770)
* Finally jumps back to exiting linesNed Batchelder2018-10-062-36/+103
| | | | | | | | 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)
* In 3.7, testing libs are issuing warnings. We don't want them to count ↵Ned Batchelder2018-10-041-0/+5
| | | | | | against us (cherry picked from commit 232db5d57c53384162e5704ff405671acd9fe27b)
* ResourceWarning isn't in py2?Ned Batchelder2018-10-041-1/+1
| | | | (cherry picked from commit ef21d19ca4fe3fc0c88a1135721f2dfbc60506f3)
* Suppress needless warnings during testsNed Batchelder2018-10-041-0/+14
| | | | (cherry picked from commit 9e783c683cf2013730a84c6f5e2e7f4439d7a352)
* Adapt to a recent 3.7 change in how functions with only docstrings get ↵Ned Batchelder2018-10-041-2/+8
| | | | | | line-numbered (cherry picked from commit 637851fcc659b92ad493c3edc87f9f2fc9b1c313)
* Undo some 3.7b4 ast tweaksNed Batchelder2018-10-042-16/+3
| | | | (cherry picked from commit 3be75d375c82003ea7ca9d3bc9502a46ff3a5822)
* Fix plugin sysinfo tests under pytracercoverage-4.5.1Ned Batchelder2018-02-101-1/+6
|
* Configurer plugins should be reported by --debug=sysNed Batchelder2018-02-101-5/+7
|
* Oops, omitting inside a source package didn't work. Now it does. #638Ned Batchelder2018-02-101-0/+7
|
* Properly handle empty decorated functions in 3.7. #640Ned Batchelder2018-02-091-0/+17
|
* Remove two unused namesNed Batchelder2018-01-281-2/+2
|
* Avoid a temp dir for a test that doesn't need itNed Batchelder2018-01-221-0/+2
|
* Ensure mapped paths use the separator of the result. #618Ned Batchelder2018-01-221-0/+32
|
* Raise an error if combine can't find usable data files. #629Ned Batchelder2018-01-211-0/+34
|
* fail_under can now be a float. #631.Ned Batchelder2018-01-213-25/+44
|
* Add a test that report uses the precision.Ned Batchelder2018-01-211-0/+43
|
* Don't confuse run-include with report-include (and also omit). Fixes #621 ↵Ned Batchelder2018-01-202-1/+36
| | | | and #622.
* Don't ever create HTML filenames longer than ~200 chars. Fixes #627.Ned Batchelder2018-01-201-3/+21
|
* Fine-tune the pypy3 5.10.0 json bugNed Batchelder2018-01-151-1/+1
|
* 3.5.4 has a regression, so skip a testNed Batchelder2018-01-141-0/+2
|
* Fine-tune the 3.7 decisionsNed Batchelder2018-01-131-1/+1
|
* Python 3.7 optimizes away 'not __debug__'Ned Batchelder2018-01-101-3/+9
|
* Skip a test that fails due to a bug in PyPy3-5.10Ned Batchelder2018-01-071-1/+5
|
* A new kind of plug-in: configurers. #563Ned Batchelder2018-01-062-3/+38
|
* There will be other kinds of pluginsNed Batchelder2017-12-263-8/+8
|
* Pylint 1.8.1, and fix its new warningsNed Batchelder2017-12-233-1/+3
|
* Commented-out debugging of pytracerNed Batchelder2017-11-241-2/+1
|
* One start() was missing a stop(), which caused meta issues on appveyorNed Batchelder2017-11-041-0/+1
|
* Point 'home page' on pypi to bitbucketNed Batchelder2017-11-041-2/+2
|
* DesperationNed Batchelder2017-11-041-1/+1
|
* Skip an obscure case that confuses me on WindowsNed Batchelder2017-11-041-1/+6
|
* Use the real implementation of del_environNed Batchelder2017-11-041-38/+4
|
* Fix that thingNed Batchelder2017-11-031-1/+1
|
* Try protecting test processes from coverage envvarsNed Batchelder2017-11-031-0/+41
|
* Root is acceptable as a combining path (the manylinux tests end up with one ↵Ned Batchelder2017-10-261-1/+4
| | | | of these)
* Add the latest warning to the docs, and give them consistent punctuationNed Batchelder2017-10-241-1/+1
|
* Make the warning about --include and --source be a real warningNed Batchelder2017-10-241-5/+3
|
* Left over import from deleting a testNed Batchelder2017-10-241-2/+0
|
* * --source and --include are mutually exclusive (take 2) #265loic@dachary.org2017-01-073-5/+18
| | | | | close #265 close #101
* Belatedly add a test for #541, so we can fix #265 for realNed Batchelder2017-10-241-0/+26
|
* Bug 581 was fixed, don't need the skipped test any moreNed Batchelder2017-10-231-38/+0
|
* Explicitly specified secondary config files are properly read. #588Ned Batchelder2017-10-211-0/+7
|