Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | fix: contexts_by_lineno now returns a true dict | Ned Batchelder | 2021-10-09 | 1 | -1/+1 |
| | |||||
* | feat: mention skipped file counts in the HTML report. #1163 | Ned Batchelder | 2021-08-06 | 1 | -1/+21 |
| | |||||
* | feat: HTML report now says where the report is. #1195 (#1207) | Ned Batchelder | 2021-08-05 | 1 | -1/+3 |
| | |||||
* | refactor: remove globals from Numbers | Ned Batchelder | 2021-06-01 | 1 | -1/+1 |
| | |||||
* | refactor: move exceptions to their own module | Ned Batchelder | 2021-05-02 | 1 | -2/+2 |
| | |||||
* | refactor: pyupgrade --py36-plus coverage/*.py | Ned Batchelder | 2021-05-02 | 1 | -12/+12 |
| | |||||
* | refactor: move the remaining backward.py code, no more backward.py | Ned Batchelder | 2021-05-01 | 1 | -1/+1 |
| | |||||
* | refactor: remove yet more unneeded backward.py shims | Ned Batchelder | 2021-05-01 | 1 | -3/+4 |
| | | | | | | | | Gone are: - PYC_MAGIC_NUMBER - code_object - SimpleNamespace | ||||
* | refactor: remove more unneeded backward.py shims | Ned Batchelder | 2021-05-01 | 1 | -3/+3 |
| | | | | | | | | | | | | | | Gone are: - iitems - litems - iternext - to_bytes - to_string - binary_bytes - byte_to_int - bytes_to_ints - BUILTINS | ||||
* | refactor: remove code explicitly choosing between py2 and py3 | Ned Batchelder | 2021-05-01 | 1 | -3/+0 |
| | |||||
* | skip_covered and skip_empty for HTML. #1090 | Ned Batchelder | 2021-01-10 | 1 | -2/+10 |
| | |||||
* | Use set literals | Ned Batchelder | 2021-01-03 | 1 | -1/+1 |
| | |||||
* | A favicon for the HTML report | Ned Batchelder | 2020-12-05 | 1 | -0/+1 |
| | |||||
* | Displaying timezone information in HTML report (#960) | Xie Yanbo | 2020-07-23 | 1 | -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_files | David Szotten | 2019-12-21 | 1 | -1/+1 |
| | | | | | | fix reporting of contexts when `relative_files = True` fixes #900 | ||||
* | Remove unneeded variable initialization | Ned Batchelder | 2019-11-09 | 1 | -3/+0 |
| | |||||
* | Optionally skip empty files in reports | reybog90 | 2019-11-01 | 1 | -0/+6 |
| | |||||
* | Better presentation of contexts. #855 | Ned Batchelder | 2019-10-13 | 1 | -3/+12 |
| | |||||
* | Warn if asked to show context but none were measured. #851 | Ned Batchelder | 2019-10-10 | 1 | -0/+3 |
| | |||||
* | Clearer logic | Ned Batchelder | 2019-10-02 | 1 | -2/+2 |
| | |||||
* | HTML: Mark things to show instead of to hide. | Ned Batchelder | 2019-07-06 | 1 | -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 reporting | Ned Batchelder | 2019-07-01 | 1 | -2/+3 |
| | |||||
* | Context reporting improvements and test | Ned Batchelder | 2019-06-30 | 1 | -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 data | Ned Batchelder | 2019-06-19 | 1 | -71/+83 |
| | |||||
* | Remove ShiningPanda hack | Ned Batchelder | 2019-06-17 | 1 | -7/+0 |
| | |||||
* | A better name | Ned Batchelder | 2019-06-17 | 1 | -6/+6 |
| | |||||
* | Fix unicode for Py2 | Ned Batchelder | 2019-06-17 | 1 | -6/+6 |
| | |||||
* | Use an object instead of a dict for the report data | Ned Batchelder | 2019-06-17 | 1 | -35/+35 |
| | |||||
* | Move more into the template globals | Ned Batchelder | 2019-06-17 | 1 | -11/+15 |
| | |||||
* | Make the incremental checker a little smarter. | Ned Batchelder | 2019-06-17 | 1 | -71/+74 |
| | |||||
* | No need to pass coverage/config separately everywhere | Ned Batchelder | 2019-06-17 | 1 | -3/+3 |
| | |||||
* | Move css class constants to class-level | Ned Batchelder | 2019-06-17 | 1 | -14/+14 |
| | |||||
* | Move HTML concerns out of data_for_file | Ned Batchelder | 2019-06-17 | 1 | -22/+34 |
| | |||||
* | Refactor for better testability | Ned Batchelder | 2019-06-17 | 1 | -47/+51 |
| | |||||
* | Get rid of Reporter base class | Ned Batchelder | 2019-06-16 | 1 | -5/+7 |
| | |||||
* | Reporter base class shouldn't be responsible for directories | Ned Batchelder | 2019-06-15 | 1 | -2/+5 |
| | |||||
* | Include the template source in the hash to make development easier | Ned Batchelder | 2019-06-12 | 1 | -2/+4 |
| | |||||
* | Include the count of contexts in the HTML report | Ned Batchelder | 2019-06-10 | 1 | -0/+1 |
| | |||||
* | Make --contexts available for HTML reports | Ned Batchelder | 2019-06-10 | 1 | -0/+1 |
| | |||||
* | Only compute contexts in HTML coverage when the option is specified. (For ↵ | Stephan Richter | 2019-06-10 | 1 | -3/+8 |
| | | | | large coverage data sets, reporting the context can be expensive.) | ||||
* | Extend HTML report to to show contexts for every covered line. | Stephan Richter | 2019-06-10 | 1 | -0/+5 |
| | |||||
* | Better tests of HTML delta generation | Ned Batchelder | 2019-05-26 | 1 | -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 Batchelder | 2018-08-24 | 1 | -1/+1 |
| | |||||
* | Stop using farm/src for HTML tests. | Ned Batchelder | 2018-08-24 | 1 | -1/+1 |
| | |||||
* | Move a common method outside the data classes | Ned Batchelder | 2018-08-10 | 1 | -1/+2 |
| | |||||
* | Be stricter about self._data | Ned Batchelder | 2018-07-08 | 1 | -3/+3 |
| | |||||
* | Trim unneeded whitespace from HTML output | Ned Batchelder | 2018-06-29 | 1 | -0/+2 |
| | |||||
* | Update NOTICE link to GitHub. | Ned Batchelder | 2018-06-24 | 1 | -1/+1 |
| | |||||
* | Delete html files when skipping covered files | Ned Batchelder | 2017-01-11 | 1 | -4/+8 |
| | |||||
* | Clean up and changes for #549 | Ned Batchelder | 2017-01-11 | 1 | -4/+4 |
| |