summaryrefslogtreecommitdiff
path: root/coverage/html.py
Commit message (Collapse)AuthorAgeFilesLines
* Add license mention to the top of all files. #313.Ned Batchelder2015-07-241-1/+4
|
* Remove the last vestige of FileReporter.nameNed Batchelder2015-07-041-1/+1
|
* Make return codes consistent: 1 for no data and 2 for fail_under. Now the ↵Ionel Cristian Maries2015-06-281-2/+1
| | | | `report` command will properly report `No data to report` if there's no data.
* Seems like I don't need unicode literals any more?Ned Batchelder2015-05-271-2/+0
|
* More work on #299Ned Batchelder2015-04-211-3/+3
| | | | | Add the timestamp to the Python output files also. Move the timestamp to the footer. Add Conrad to AUTHORS, and update the CHANGES file.
* Merged in conradho/coverage.py (pull request #47)Ned Batchelder2015-04-211-0/+4
|\ | | | | | | Ticket 299: Adding a time stamp to html report
| * Ticket299: add time stamp to index.html reports pageConrad Ho2015-04-141-0/+4
| |
* | Merged in jchappell82/coverage.py/issue361 (pull request #45)Ned Batchelder2015-04-151-1/+1
|\ \
| * | Convert single quoted html output to use double quotes.Jon Chappell2015-04-131-1/+1
| |/
* | Remove every last trace of CodeUnit, and bring me a glass of vodkaNed Batchelder2015-02-221-9/+9
|/
* Collect all the nudgy environment checks into coverage.envNed Batchelder2015-01-181-2/+6
|
* Move base-class logic from CodeUnit to FileReporterNed Batchelder2015-01-091-2/+3
|
* PEP8, pylint tweaksNed Batchelder2014-12-131-1/+1
|
* Source is always Unicode in HTML code. More refactoring to come.Ned Batchelder2014-12-121-18/+7
|
* Try out pylint spelling. Kinda noisy, but fixed some stuff.Ned Batchelder2014-11-271-1/+2
|
* Use json for html status file instead of pickle.Ned Batchelder2014-10-271-11/+46
|
* Filtering now computes coverage percentages properly.Ned Batchelder2014-10-221-0/+5
|
* Merged ned/coveragepy into defaultDanny Allen2014-09-221-2/+2
|\
| * Don't ask people to pass source back into CodeUnitsNed Batchelder2014-09-141-2/+2
| |
* | Merged ned/coveragepy into defaultDanny Allen2014-08-111-4/+4
|\ \ | |/
| * Prevent UnicodeDecodeErrors in html report. #303Ned Batchelder2014-06-111-9/+3
| |
| * Add detail to the UnicodeDecodeError for #303Ned Batchelder2014-06-091-1/+9
| |
| * Continued refactoring of CodeUnitNed Batchelder2014-05-181-3/+1
| |
* | Rework of my pull request #18:Danny Allen2014-05-151-0/+1
|/ | | | | | | | * Implement "go to next" buttons in pyfile UI * Improve filter on main UI to persist over page reloads * Hide totals table footer if hiding any rows, as values will be inaccurate * Implement live filtering of index table rows * Upgrade to jQuery 1.11.1
* Small cleanupsNed Batchelder2014-05-031-1/+0
|
* Hacked-in Mako support.Ned Batchelder2014-03-081-2/+2
|
* Merged 4.0 to defaultNed Batchelder2013-12-131-22/+7
|\
| * enumerate has a start parameter!Ned Batchelder2013-10-231-2/+1
| | | | | | | | | | --HG-- branch : 4.0
| * with statements: no more finally closeNed Batchelder2013-10-201-19/+5
| | | | | | | | | | --HG-- branch : 4.0
| * Generator expressons are ok now.Ned Batchelder2013-10-191-1/+1
| | | | | | | | | | --HG-- branch : 4.0
* | No point computing branch info if we aren't doing branch coverage.Ned Batchelder2013-10-271-1/+2
|/
* Fix the mechanism for HTML to find OS-installed resources.Ned Batchelder2013-10-101-11/+19
|
* Search a list of places to find HTML report static files. #259.Ned Batchelder2013-09-281-6/+25
| | | | | --HG-- rename : coverage/htmlfiles/jquery-1.4.3.min.js => coverage/htmlfiles/jquery.min.js
* Get rid of locals(). Thanks for the prod, Brett Cannon.Ned Batchelder2013-09-151-14/+15
|
* Branch coverage is computed more accurately, #156.Ned Batchelder2012-11-191-3/+0
|
* Upgrading pylint means fixing more nits.Ned Batchelder2012-11-101-1/+1
|
* Now the title of the HTML report can be set.Ned Batchelder2012-11-091-1/+5
|
* pylint clean-up.Ned Batchelder2012-11-031-0/+2
|
* The reporting functions now return a float, the total percentage covered.Ned Batchelder2012-11-031-1/+3
|
* Fix #193: The status.dat file written by py2 can't be read by py3Ned Batchelder2012-10-031-1/+1
|
* Properly deal with files encoded as UTF-8 with BOM. Fixes #179.Ned Batchelder2012-05-141-0/+4
|
* The [html]extra_css configuration value is a file path to a CSS file that ↵Ned Batchelder2012-04-201-0/+15
| | | | gets copied into the HTML report.
* Refactor reporters so the config is part of construction, and is then ↵Ned Batchelder2012-04-191-9/+8
| | | | available everywhere.
* If a source file has an encoding declaration, use it when producing the ↵Ned Batchelder2012-03-211-4/+16
| | | | HTML. Fixes issue #157.
* Make tests run on PyPy, and make test_farm more comprehensible.Ned Batchelder2012-03-181-1/+5
|
* CleanupNed Batchelder2011-08-171-1/+1
|
* Properly handle Unicode characters in Python source when creating the HTML ↵Ned Batchelder2011-08-171-11/+11
| | | | report (except surrogates come out as pairs of blots in the HTML). Fixes #124 and #144.
* Fix whitespaceNed Batchelder2011-08-031-1/+1
|
* Refactor handling of static report files to a separate function.Ben Finney2011-07-271-1/+4
|
* Keyboard-shorcut help is now available on the file page of the HTML report.Ned Batchelder2011-04-201-0/+2
|