Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | refactor: no need for maybe-u prefixes in test regexes | Ned Batchelder | 2021-10-10 | 1 | -1/+1 |
| | | | | That was for Python 2, which we don't support anymore. | ||||
* | feat: mention skipped file counts in the HTML report. #1163 | Ned Batchelder | 2021-08-06 | 1 | -0/+4 |
| | |||||
* | test: change how we keep mismatched actual output | Ned Batchelder | 2021-07-15 | 1 | -0/+1 |
| | | | | | | | | | | | | Now when a goldtest has a failure, the actual mismatched output will be written to the tests/actual directory. Along the way, I removed some obsolete settings which were only used by unittest and unittest_mixins, which we no longer use: - COVERAGE_KEEP_TMP - COVERAGE_ENV_ID - $TMPDIR/coverage_test | ||||
* | fix: generate flat file names differently | Ned Batchelder | 2021-07-15 | 1 | -3/+10 |
| | | | | | | | | Fixes a few unusual issues with reports: - #580: HTML report generation fails on too long path - #584: File collisions in coverage report html - #1167: Remove leading underscore in coverage html | ||||
* | feat: warnings are now real warnings | Ned Batchelder | 2021-05-30 | 1 | -7/+8 |
| | | | | | | This makes coverage warnings visible when running test suites under pytest. But it also means some uninteresting warnings would show up in our own test suite, so we had to catch or suppress those. | ||||
* | refactor: move exceptions to their own module | Ned Batchelder | 2021-05-02 | 1 | -1/+1 |
| | |||||
* | refactor: pyupgrade --py36-plus tests/**.py | Ned Batchelder | 2021-05-02 | 1 | -8/+7 |
| | |||||
* | refactor: remove unneeded backward.py shims | Ned Batchelder | 2021-05-01 | 1 | -4/+3 |
| | | | | | | | | | | | | | | | Removed were: - StringIO - configparser - string_class - unicode_class - range - zip_longest - get_thread_id - path_types - shlex_quote - reprlib | ||||
* | refactor: remove code explicitly choosing between py2 and py3 | Ned Batchelder | 2021-05-01 | 1 | -2/+0 |
| | |||||
* | refactor: our own change_dir context manager | Ned Batchelder | 2021-03-11 | 1 | -1/+1 |
| | | | | We don't need to use the one from unittest_mixins. | ||||
* | test: reduce use of unittest | Ned Batchelder | 2021-03-11 | 1 | -4/+4 |
| | |||||
* | test: have pytest collect test classes uniformly | Ned Batchelder | 2021-03-11 | 1 | -1/+1 |
| | |||||
* | refactor: simplify a one-iteration loop | Ned Batchelder | 2021-02-25 | 1 | -4/+3 |
| | |||||
* | style: fix long lines and avoid backslashesnedbat/unittest2pytest | Ned Batchelder | 2021-01-31 | 1 | -17/+13 |
| | |||||
* | style: correct placement of auto-added pytest imports | Ned Batchelder | 2021-01-31 | 1 | -1/+1 |
| | |||||
* | refactor: unittest2pytest -w tests | Ned Batchelder | 2021-01-31 | 1 | -47/+35 |
| | | | | One step of moving to pure pytest tests. | ||||
* | skip_covered and skip_empty for HTML. #1090 | Ned Batchelder | 2021-01-10 | 1 | -19/+33 |
| | |||||
* | Need new gold files for pep626 partial branch HTML report | Ned Batchelder | 2021-01-10 | 1 | -16/+34 |
| | |||||
* | Fix tests for GitHub windows platform | Ned Batchelder | 2020-11-28 | 1 | -1/+3 |
| | | | | | | | | | | | | | | The tests were failing because of differences in file paths. It was comparing: C:\Users\runneradmin\AppData\... to: C:\Users\RUNNER~1\AppData\... and failing. These changes normalize the file paths so the comparisons work properly. | ||||
* | More bitbucket->github urls | Ned Batchelder | 2020-08-18 | 1 | -5/+5 |
| | |||||
* | Displaying timezone information in HTML report (#960) | Xie Yanbo | 2020-07-23 | 1 | -0/+6 |
| | | | | | | | | * 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 | -0/+17 |
| | | | | | | fix reporting of contexts when `relative_files = True` fixes #900 | ||||
* | Polish up cmd.rst | Ned Batchelder | 2019-12-08 | 1 | -1/+1 |
| | |||||
* | Clean-ups I noticed while doing something else | Ned Batchelder | 2019-11-17 | 1 | -1/+2 |
| | |||||
* | Optionally skip empty files in reports | reybog90 | 2019-11-01 | 1 | -0/+14 |
| | |||||
* | This test accidentally triggered our exclude regex during metacov | Ned Batchelder | 2019-10-14 | 1 | -7/+7 |
| | |||||
* | More convenient gold file structure | Ned Batchelder | 2019-10-14 | 1 | -43/+40 |
| | |||||
* | Remove vestigial debugging | Ned Batchelder | 2019-10-14 | 1 | -2/+0 |
| | |||||
* | I don't think I need my home dir scrubbed | Ned Batchelder | 2019-10-13 | 1 | -2/+0 |
| | |||||
* | Better presentation of contexts. #855 | Ned Batchelder | 2019-10-13 | 1 | -4/+10 |
| | |||||
* | Warn if asked to show context but none were measured. #851 | Ned Batchelder | 2019-10-10 | 1 | -11/+20 |
| | |||||
* | The C tracer can do dynamic contexts, so don't skip this test | Ned Batchelder | 2019-10-10 | 1 | -4/+0 |
| | |||||
* | Context patterns are regexes, not globs | Ned Batchelder | 2019-10-02 | 1 | -1/+1 |
| | |||||
* | No need for format indexes (mostly) | Ned Batchelder | 2019-09-01 | 1 | -1/+1 |
| | |||||
* | Remove the JSON data code | Ned Batchelder | 2019-07-10 | 1 | -1/+0 |
| | |||||
* | HTML: Mark things to show instead of to hide. | Ned Batchelder | 2019-07-06 | 1 | -3/+3 |
| | | | | | | | | | | 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 | -3/+18 |
| | |||||
* | Context reporting improvements and test | Ned Batchelder | 2019-06-30 | 1 | -5/+62 |
| | | | | | Contexts should only be reported on lines that are marked as executed. The empty outer context is now reported as "(empty)". | ||||
* | Make a Unicode character more apparent in the source | Ned Batchelder | 2019-06-30 | 1 | -2/+6 |
| | |||||
* | Typo | Ned Batchelder | 2019-06-29 | 1 | -1/+1 |
| | |||||
* | Remove ShiningPanda hack | Ned Batchelder | 2019-06-17 | 1 | -8/+0 |
| | |||||
* | Make the incremental checker a little smarter. | Ned Batchelder | 2019-06-17 | 1 | -2/+2 |
| | |||||
* | This was a copy of an existing test. We need to write some new ones. | Ned Batchelder | 2019-06-10 | 1 | -20/+1 |
| | |||||
* | Add some tests for new methods. | Stephan Richter | 2019-06-10 | 1 | -0/+24 |
| | |||||
* | Refactored HTML tests dropped an assert | Ned Batchelder | 2019-06-10 | 1 | -0/+1 |
| | |||||
* | Better tests of HTML delta generation | Ned Batchelder | 2019-05-26 | 1 | -41/+66 |
| | | | | | | 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. | ||||
* | Lint cleanup | Ned Batchelder | 2018-11-18 | 1 | -3/+2 |
| | |||||
* | Rename farm to gold, since that's what it is | Ned Batchelder | 2018-11-18 | 1 | -14/+14 |
| | |||||
* | Simplify the way we run coverage in these tests | Ned Batchelder | 2018-11-15 | 1 | -50/+14 |
| | |||||
* | Compare the css files exactly | Ned Batchelder | 2018-11-14 | 1 | -2/+2 |
| |