summaryrefslogtreecommitdiff
path: root/coverage/html.py
Commit message (Collapse)AuthorAgeFilesLines
* skip_covered and skip_empty for HTML. #1090nedbat/html-skip-coveredNed Batchelder2021-01-101-2/+10
|
* Use set literalsNed Batchelder2021-01-031-1/+1
|
* A favicon for the HTML reportNed Batchelder2020-12-051-0/+1
|
* Displaying timezone information in HTML report (#960)Xie Yanbo2020-07-231-2/+2
| | | | | | | | * Displaying timezone information in HTML report * A helpber to format datetime with local timezone * No backward compatibility with older python versions
* fix context reporting for relative_filesDavid Szotten2019-12-211-1/+1
| | | | | | fix reporting of contexts when `relative_files = True` fixes #900
* Remove unneeded variable initializationNed Batchelder2019-11-091-3/+0
|
* Optionally skip empty files in reportsreybog902019-11-011-0/+6
|
* Better presentation of contexts. #855Ned Batchelder2019-10-131-3/+12
|
* Warn if asked to show context but none were measured. #851Ned Batchelder2019-10-101-0/+3
|
* Clearer logicNed Batchelder2019-10-021-2/+2
|
* HTML: Mark things to show instead of to hide.Ned Batchelder2019-07-061-6/+4
| | | | | | | | | | Also made some other changes along the way: * Scroll bar markers change as the selected categories change. * We don't use css class 'stm' for anything, get rid of it. * Better sass use all around.
* Clean up and test filtering contexts for reportingNed Batchelder2019-07-011-2/+3
|
* Context reporting improvements and testNed Batchelder2019-06-301-2/+2
| | | | | Contexts should only be reported on lines that are marked as executed. The empty outer context is now reported as "(empty)".
* Split HtmlReporter to get at dataNed Batchelder2019-06-191-71/+83
|
* 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-171-35/+35
|
* 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-171-3/+3
|
* 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-171-47/+51
|
* Get rid of Reporter base classNed Batchelder2019-06-161-5/+7
|
* Reporter base class shouldn't be responsible for directoriesNed Batchelder2019-06-151-2/+5
|
* Include the template source in the hash to make development easierNed Batchelder2019-06-121-2/+4
|
* Include the count of contexts in the HTML reportNed Batchelder2019-06-101-0/+1
|
* Make --contexts available for HTML reportsNed Batchelder2019-06-101-0/+1
|
* Only compute contexts in HTML coverage when the option is specified. (For ↵Stephan Richter2019-06-101-3/+8
| | | | large coverage data sets, reporting the context can be expensive.)
* Extend HTML report to to show contexts for every covered line.Stephan Richter2019-06-101-0/+5
|
* 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.
* When we trimmed trailing whitespace, we lost the last newline. Put it back.Ned Batchelder2018-08-241-1/+1
|
* Stop using farm/src for HTML tests.Ned Batchelder2018-08-241-1/+1
|
* Move a common method outside the data classesNed Batchelder2018-08-101-1/+2
|
* Be stricter about self._dataNed Batchelder2018-07-081-3/+3
|
* Trim unneeded whitespace from HTML outputNed Batchelder2018-06-291-0/+2
|
* Update NOTICE link to GitHub.Ned Batchelder2018-06-241-1/+1
|
* Delete html files when skipping covered filesNed Batchelder2017-01-111-4/+8
|
* Clean up and changes for #549Ned Batchelder2017-01-111-4/+4
|
* html total must account for files 100% covered #549loic@dachary.org2017-01-111-2/+4
| | | | | | | | | | | | | | The --skip-covered implementation for html must not just skip the files that are 100% covered. It must remember them and not fail with a "no coverage data" when all files are 100% covered. The statistics about the files that are 100% covered must also be summed in the total for the index.html page. close #549 --HG-- branch : issue-549
* implement --skip-covered for html report #433loic@dachary.org2016-12-181-3/+9
| | | | | | | close #433 --HG-- branch : issue-433-2
* status.json file is more compactNed Batchelder2016-11-291-1/+1
|
* Spelling fixesVille Skyttä2016-07-311-1/+1
| | | | | --HG-- branch : spelling
* Correct references to the debounce library file.Ben Finney2016-07-151-1/+1
|
* Move self-less methods to be functions.Ned Batchelder2016-05-121-12/+11
|
* Make the two teplate rendering calls look alikeNed Batchelder2016-05-091-6/+11
|
* Better descriptions of missing one-line executables. Part of #475Ned Batchelder2016-03-271-1/+2
|
* Remove unused importNed Batchelder2016-03-021-1/+0
|
* Use templite's whitespace slurping to avoid post-processing the HTMLNed Batchelder2016-02-151-12/+1
|