summaryrefslogtreecommitdiff
path: root/coverage
Commit message (Collapse)AuthorAgeFilesLines
...
* 5.0b1 prepNed Batchelder2019-11-101-1/+1
|
* Tweaks to Coverage docstringsNed Batchelder2019-11-101-10/+10
|
* Finish the sqldata.py docstringsNed Batchelder2019-11-102-12/+53
|
* Remove unneeded variable initializationNed Batchelder2019-11-091-3/+0
|
* Make sure dataio logging is happening where it shouldNed Batchelder2019-11-091-0/+2
|
* CoverageData.lines doesn't sort its returned listNed Batchelder2019-11-091-1/+1
|
* sqldata.py docstringsNed Batchelder2019-11-091-31/+118
|
* '[run] note' is no longer supported.Ned Batchelder2019-11-092-9/+3
|
* Meta on linux; makefile target rationalizationNed Batchelder2019-11-081-1/+1
|
* Linux tests are runnableNed Batchelder2019-11-071-1/+1
| | | | PYTHONPYCACHEPREFIX makes the tests 10% faster on 3.8
* A little more metacovNed Batchelder2019-11-051-2/+2
|
* Consolidate the type checking of toml valuesNed Batchelder2019-11-041-22/+12
|
* Refactor the toml logicNed Batchelder2019-11-041-77/+82
| | | | | | | | | - 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-032-22/+28
|
* A better way to import optional modulesNed Batchelder2019-11-034-9/+74
|
* Expand environment variables in any part of a TOML configNed Batchelder2019-11-031-7/+4
|
* Cleanups for TOML codeNed Batchelder2019-11-031-4/+20
|
* TOML support for pyproject.toml and other config filesFrazer McLean2019-11-034-5/+176
| | | | | | | | | | | | | | | | | | | | | | | | | | | | 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-3/+34
|
* Clarify two functionsNed Batchelder2019-11-011-0/+4
|
* More polish on the expandable contextsNed Batchelder2019-10-172-7/+12
|
* Annotations should appear when hovering the text line, but not other parts ↵Ned Batchelder2019-10-162-13/+20
| | | | of #source.p
* Only the active context labels should have colorNed Batchelder2019-10-152-5/+5
|
* make cssNed Batchelder2019-10-141-18/+16
|
* Annotations and context labels have to co-existNed Batchelder2019-10-142-79/+70
|
* make cssNed Batchelder2019-10-131-43/+44
|
* Better presentation of contexts. #855Ned Batchelder2019-10-133-38/+89
|
* Source code without tablesNed Batchelder2019-10-133-142/+154
|
* Warn if asked to show context but none were measured. #851Ned Batchelder2019-10-101-0/+3
|
* Tie up a loose end in the docsNed Batchelder2019-10-081-1/+0
|
* Sqlite3 info in 'coverage debug sys'Ned Batchelder2019-10-082-1/+13
|
* Bump versionNed Batchelder2019-10-081-1/+1
|
* Context-switching plugins should be listed in debug outputNed Batchelder2019-10-061-0/+1
|
* Slowly making progress on sqldata docstringsNed Batchelder2019-10-061-0/+7
|
* Add some needed details to the Coverage docstringsNed Batchelder2019-10-061-6/+21
|
* Quiet pylintNed Batchelder2019-10-061-3/+5
|
* Context patterns are regexes, not globsNed Batchelder2019-10-022-7/+29
|
* Setting query context has to be done with a separate method callNed Batchelder2019-10-021-34/+24
|
* Clearer logicNed Batchelder2019-10-021-2/+2
|
* Bump versionNed Batchelder2019-09-211-1/+1
|
* Exit arcs have to be corrected to first linesNed Batchelder2019-09-211-1/+5
| | | | | | | | | | 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.
* Remove unused attributeNed Batchelder2019-09-201-1/+0
|
* Python tracer supports dynamic contexts. #846Ned Batchelder2019-09-151-4/+34
|
* Polish up substitute_variables based on a lightning talkNed Batchelder2019-09-142-26/+26
|
* Correct some function names and docstrings. #843Ned Batchelder2019-09-092-10/+14
|
* Document the module-level stuff. #837Ned Batchelder2019-09-091-1/+1
|
* A little more in the db schema docsNed Batchelder2019-09-091-3/+4
|
* Updating with an empty data is okNed Batchelder2019-09-031-16/+24
| | | | | With no arc or line data, it used to choose lines arbitrarily, which would fail if an empty data was updating an arc data.
* Need to set a sqlite attribute on a real sqlite connectionNed Batchelder2019-09-031-1/+1
|
* --debug=self now goes on a second line for better readabilityNed Batchelder2019-09-031-2/+2
|