summaryrefslogtreecommitdiff
path: root/tests
Commit message (Collapse)AuthorAgeFilesLines
...
* Adapt to 3.9's way of reporting files using absolute paths.Ned Batchelder2019-11-252-10/+23
|
* Implement __spec__ for files we run. #745 #838Ned Batchelder2019-11-242-9/+39
|
* Clean-ups I noticed while doing something elseNed Batchelder2019-11-173-4/+5
|
* Expose numbits_to_nums() SQL function, refs #868Simon Willison2019-11-121-0/+5
|
* Templite {% joined %} is more convenient than trailing hyphensNed Batchelder2019-11-111-0/+18
|
* Coverage.py is only capitalized when it starts a sentenceNed Batchelder2019-11-101-3/+3
|
* CoverageData.lines doesn't sort its returned listNed Batchelder2019-11-092-7/+7
|
* '[run] note' is no longer supported.Ned Batchelder2019-11-094-59/+12
|
* Linux tests are runnableNed Batchelder2019-11-071-5/+15
| | | | PYTHONPYCACHEPREFIX makes the tests 10% faster on 3.8
* A little more metacovNed Batchelder2019-11-051-2/+2
|
* Exclude some nested coverage lines from coverageNed Batchelder2019-11-041-28/+32
|
* This file was unused since we deleted test_farm.py a year agoNed Batchelder2019-11-041-14/+0
|
* Refactor the toml logicNed Batchelder2019-11-041-6/+21
| | | | | | | | | - Section names can be dotted. - We only ever read one file, so we don't need to loop over files. - Error messages should show the actual section names where problems happened.
* Give warnings about not being able to parse TOML files if toml isn't installedNed Batchelder2019-11-031-0/+34
|
* A better way to import optional modulesNed Batchelder2019-11-031-0/+12
|
* Expand environment variables in any part of a TOML configNed Batchelder2019-11-031-1/+2
|
* TOML support for pyproject.toml and other config filesFrazer McLean2019-11-031-0/+123
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Squashed and rebased from https://github.com/nedbat/coveragepy/pull/699 Missing getfloat TOMLConfigParser -> TomlConfigParser fix getfloat for int Move TomlConfigParser Add name to contributors Import toml in backward.py fix indentation Don't ignore TomlDecodeError Raise if TomlConfigParser is used without toml installed Add tests for TOML config Fix test on Python 2 Mention toml support in documentation.
* Optionally skip empty files in reportsreybog902019-11-015-2/+71
|
* Upgrade pylintNed Batchelder2019-10-184-5/+5
|
* More polish on the expandable contextsNed Batchelder2019-10-172-6/+6
|
* Annotations should appear when hovering the text line, but not other parts ↵Ned Batchelder2019-10-162-8/+10
| | | | of #source.p
* Only the active context labels should have colorNed Batchelder2019-10-152-2/+2
|
* This test accidentally triggered our exclude regex during metacovNed Batchelder2019-10-144-15/+16
|
* make update-supportNed Batchelder2019-10-141-18/+16
|
* make cssNed Batchelder2019-10-141-18/+16
|
* Update html gold filesNed Batchelder2019-10-1437-204/+204
|
* More convenient gold file structureNed Batchelder2019-10-143-43/+55
|
* Remove vestigial debuggingNed Batchelder2019-10-141-2/+0
|
* I don't think I need my home dir scrubbedNed Batchelder2019-10-131-2/+0
|
* Update HTML gold support filesNed Batchelder2019-10-132-46/+47
|
* Update HTML gold testsNed Batchelder2019-10-1338-599/+243
|
* make cssNed Batchelder2019-10-131-43/+44
|
* Better presentation of contexts. #855Ned Batchelder2019-10-131-4/+10
|
* Save copies of support files so we can view gold files properlyNed Batchelder2019-10-1311-0/+914
|
* Warn if asked to show context but none were measured. #851Ned Batchelder2019-10-101-11/+20
|
* The C tracer can do dynamic contexts, so don't skip this testNed Batchelder2019-10-101-4/+0
|
* Quiet pylintNed Batchelder2019-10-061-0/+3
|
* Context patterns are regexes, not globsNed Batchelder2019-10-021-1/+1
|
* Setting query context has to be done with a separate method callNed Batchelder2019-10-024-87/+88
|
* Exit arcs have to be corrected to first linesNed Batchelder2019-09-211-45/+25
| | | | | | | | | | We've long remapped line numbers to the first line of a multi-line statement. But exit line numbers (negative numbers) were not remapped. This meant we were needlessly chasing weirdnesses in implementations. But the actual results of running coverage always remapped results to the first line, so there's no point in tracking the unmapped line numbers in our tests.
* Avoid a test that recent pypy3 can't run properlyNed Batchelder2019-09-151-0/+3
|
* Python tracer supports dynamic contexts. #846Ned Batchelder2019-09-152-56/+0
|
* Polish up substitute_variables based on a lightning talkNed Batchelder2019-09-141-0/+1
|
* Updating with an empty data is okNed Batchelder2019-09-031-0/+16
| | | | | With no arc or line data, it used to choose lines arbitrarily, which would fail if an empty data was updating an arc data.
* Log some indication of the script being executedNed Batchelder2019-09-021-0/+9
|
* Reporting methods shouldn't permanently change the configurationNed Batchelder2019-09-011-0/+11
|
* No need for format indexes (mostly)Ned Batchelder2019-09-017-14/+14
|
* Make callers debug output easier to use as editor launchesNed Batchelder2019-09-011-3/+3
|
* Create a JSON reportMatt Bachmann2019-08-313-14/+230
|
* Improved numbits operationsNed Batchelder2019-08-111-8/+107
| | | | | | | | | * Better names (merge -> union) * More ops (intersection) * Can be registered for SQLite use * Numbits can be empty Also, line_map is a dumb table name. line_bits is marginally better.