summaryrefslogtreecommitdiff
path: root/coverage
Commit message (Collapse)AuthorAgeFilesLines
* Make show_contexts available to set_option, and document it.Ned Batchelder2019-06-301-1/+2
|
* A little more about Coverage.currentNed Batchelder2019-06-291-1/+7
|
* New API: Coverage.current() returns the latest started instance.Ned Batchelder2019-06-251-0/+15
|
* Split HtmlReporter to get at dataNed Batchelder2019-06-192-75/+87
|
* Move arcz_to_arcs to misc so we can use it elsewhereNed Batchelder2019-06-191-0/+39
|
* This class was simpler as a functionNed Batchelder2019-06-172-16/+12
|
* Remove ShiningPanda hackNed Batchelder2019-06-171-7/+0
|
* A better nameNed Batchelder2019-06-171-6/+6
|
* Fix unicode for Py2Ned Batchelder2019-06-171-6/+6
|
* Use an object instead of a dict for the report dataNed Batchelder2019-06-173-37/+55
|
* Move more into the template globalsNed Batchelder2019-06-171-11/+15
|
* Make the incremental checker a little smarter.Ned Batchelder2019-06-171-71/+74
|
* No need to pass coverage/config separately everywhereNed Batchelder2019-06-176-19/+20
|
* Move css class constants to class-levelNed Batchelder2019-06-171-14/+14
|
* Move HTML concerns out of data_for_fileNed Batchelder2019-06-171-22/+34
|
* Refactor for better testabilityNed Batchelder2019-06-172-49/+53
|
* Get rid of Reporter base classNed Batchelder2019-06-165-97/+67
|
* Refactor text reporting to use the same code paths as other reportsNed Batchelder2019-06-163-65/+55
|
* Remove a property that has been deprecated for three yearsNed Batchelder2019-06-161-10/+0
|
* Reporter base class shouldn't be responsible for directoriesNed Batchelder2019-06-153-13/+11
|
* More sass goodnessNed Batchelder2019-06-132-197/+178
|
* Update the test output css files tooNed Batchelder2019-06-131-2/+5
|
* Use sass for css generation, to get nice hover highlights on linesNed Batchelder2019-06-132-414/+621
|
* Include the template source in the hash to make development easierNed Batchelder2019-06-121-2/+4
|
* Dynamic contexts can be disabled with 'none'Ned Batchelder2019-06-121-3/+4
|
* Add comments to the SQL schema, and keep them when creating the dbNed Batchelder2019-06-111-22/+28
|
* Polishing substitute_variablesNed Batchelder2019-06-111-3/+2
|
* Fix two pylint warningsNed Batchelder2019-06-111-2/+3
|
* Include the count of contexts in the HTML reportNed Batchelder2019-06-102-1/+2
|
* Make --contexts available for HTML reportsNed Batchelder2019-06-103-13/+24
|
* Support for full qnames for old-style classes.Stephan Richter2019-06-101-1/+15
|
* Only compute contexts in HTML coverage when the option is specified. (For ↵Stephan Richter2019-06-102-3/+9
| | | | large coverage data sets, reporting the context can be expensive.)
* Tricky case: Thread switching is getting in the way.Stephan Richter2019-06-101-1/+6
|
* Handle TestCase classes with just one test, too.Albertas Agejevas2019-06-101-1/+2
|
* Fix styling and tests. (The tests are slightly insane with no obvious way to ↵Stephan Richter2019-06-102-8/+4
| | | | update the expected output.)
* Extend HTML report to to show contexts for every covered line.Stephan Richter2019-06-106-2/+79
|
* Add ability to report contexts for all lines of a file.Stephan Richter2019-06-102-0/+37
|
* Make sure to report the full Python path for the test function. That way we ↵Stephan Richter2019-06-101-7/+11
| | | | can report on namespaces.
* Provide a default for query contexts.Stephan Richter2019-06-101-0/+1
|
* Sigh, sqlite3 does not support proper array serialization.Stephan Richter2019-06-101-8/+10
|
* Pass the contexts to the report command.Albertas Agejevas2019-06-103-6/+22
|
* Initialize attributes.Stephan Richter2019-06-101-0/+2
|
* Support for multiple, glob-based contexts in result queries.Stephan Richter2019-06-102-10/+46
|
* group() can return a number of groups. Nice.Ned Batchelder2019-06-101-1/+1
|
* Adapt to optimization tweak in CPython 3.8.0b1Ned Batchelder2019-06-051-1/+4
|
* Silence a silly pylint warningNed Batchelder2019-06-011-1/+1
|
* Python 3.8 added an argument to _bootstrap. It should have been like this ↵Ned Batchelder2019-05-291-2/+2
| | | | anyway.
* Word-smith the html warningNed Batchelder2019-05-261-4/+6
|
* Add warning sectionS.Y. Lee2019-05-261-0/+4
|
* Better tests of HTML delta generationNed Batchelder2019-05-261-1/+1
| | | | | | The old tests relied on deleting files and seeing them get recreated, which could be misleading. The new tests track which files were opened for writing, which is more accurate.