summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* docs: remove stale TODONed Batchelder2021-10-181-3/+1
|
* docs: correct the description of 'debug sys' tracer details. #1157Ned Batchelder2021-10-171-2/+2
|
* test: remove some obsolete HTML scrubsNed Batchelder2021-10-171-5/+0
|
* chore: updated HTML gold filesNed Batchelder2021-10-1738-383/+626
|
* test: don't show these functions when HTML gold files failNed Batchelder2021-10-172-0/+3
|
* test: html scrubs need to account for pytest dir namingNed Batchelder2021-10-171-0/+1
|
* fix(html): adjust some colorsNed Batchelder2021-10-173-22/+21
| | | | | | | | - make the yellow border more visible - make the context-blue less vibrant - all colors are lower-case
* feat(html): sticky header on pyfileNed Batchelder2021-10-176-18/+103
|
* refactor(html): use header/main/footer html5 elementsNed Batchelder2021-10-175-37/+37
|
* test: fix the tests/gold/html/Makefile to copy actual outputNed Batchelder2021-10-172-4/+4
|
* test: improve this one html testNed Batchelder2021-10-171-3/+3
|
* build: jQuery 3.6.0Ned Batchelder2021-10-162-5/+6
|
* feat: `coverage run` now sets the COVERAGE_RUN environment variableNed Batchelder2021-10-165-7/+35
|
* test: very minor clean upNed Batchelder2021-10-161-1/+4
|
* test: subprocess diagnostic for when we need itNed Batchelder2021-10-161-0/+6
|
* test: mark some uncovered lines in collector.pyNed Batchelder2021-10-141-4/+4
|
* test: we don't need two sys.path restorersNed Batchelder2021-10-143-15/+6
|
* perf: reduce the overhead of recording branchesNed Batchelder2021-10-144-8/+52
|
* test: parametrize test_pathologically_long_code_objectNed Batchelder2021-10-141-21/+18
| | | | | While experimenting with packing branch ends into one int, this test showed a mistake I had made. Turns out it wasn't an obsolete test after all.
* style(docs): clean up a trailing blank lineNed Batchelder2021-10-141-1/+0
|
* test: don't use subprocesses where we don't have toNed Batchelder2021-10-133-56/+74
| | | | | | When running tests with `-n 0`, this shaves 4 seconds off the run time. When running the complete test suite with xdist, it takes 2 seconds longer!?
* refactor: use the get_report helperNed Batchelder2021-10-131-6/+1
|
* refactor: no longer need to explicitly omit site-packagesNed Batchelder2021-10-131-15/+0
| | | | 6.x omits site-packages automatically.
* refactor: convert existing imports to start_stop_importNed Batchelder2021-10-131-15/+6
|
* test: we really don't want to hear about imp being deprecatedNed Batchelder2021-10-121-0/+5
|
* test: add a test that self.stdout() works the way it says.Ned Batchelder2021-10-121-0/+9
|
* fix: use human sorting on human-readable thingsNed Batchelder2021-10-1211-31/+100
|
* test: lightly test the ast_dump functionNed Batchelder2021-10-122-69/+90
|
* fix: find_writable_pth_directory must expect failure from open()Michał Górny2021-10-121-4/+4
| | | | | | | Fix find_writable_pth_directory() to expect the OSError from the open() call. In general, this is what's going to happen if the file is not writable. The current logic could only be triggered e.g. if the file was writable but the underlying filesystem run out of space.
* docs: use real emdashes for better renderingnedbat/split-changesNed Batchelder2021-10-112-251/+206
|
* docs: keep CHANGES small, full list is in the docsNed Batchelder2021-10-112-2779/+2839
|
* build: bump versionNed Batchelder2021-10-112-1/+7
|
* build: prep for 6.0.26.0.2Ned Batchelder2021-10-115-8/+12
|
* docs: sample HTML from 6.0.2Ned Batchelder2021-10-1111-21/+21
|
* fix: source modules need to be re-imported. #1232Ned Batchelder2021-10-117-42/+78
|
* test: add more tests of run_python_fileNed Batchelder2021-10-113-9/+95
| | | | | | The tests in test_process run the exception handling in execfile.py, but only under coverage, so metacov can't see it. These smaller tests exercise the code without coverage on top.
* build: clean up the Makefile a bitNed Batchelder2021-10-111-9/+6
|
* test: add a test of hash-based pyc filesNed Batchelder2021-10-111-2/+9
|
* refactor: remove qualname code that was only for Python 2Ned Batchelder2021-10-111-31/+5
|
* fix: make third-party detection work with namespace packages. #1231Ned Batchelder2021-10-103-12/+113
|
* style: the name of the matchers don't need quotes in the reprsNed Batchelder2021-10-101-3/+3
|
* refactor: remove some left over test printsNed Batchelder2021-10-101-3/+0
|
* test: cover the last edge cases in sqldata.pyNed Batchelder2021-10-102-6/+16
|
* fix: raise CoverageException for SQLite connection errorsnedbat/sqldata-edge-testsNed Batchelder2021-10-102-1/+13
|
* refactor: simplify some strange string formattingNed Batchelder2021-10-102-5/+5
|
* test: test two add_file_tracer possibilitiesNed Batchelder2021-10-101-0/+22
|
* refactor: no need for maybe-u prefixes in test regexesNed Batchelder2021-10-104-11/+11
| | | | That was for Python 2, which we don't support anymore.
* test: run test_data.py with debugging onNed Batchelder2021-10-101-96/+110
|
* refactor: remove a mixin class from testsNed Batchelder2021-10-101-67/+64
|
* style: prefer explicit string concatenationNed Batchelder2021-10-1014-140/+133
|