summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* refactor: parametrize a test for #1608Ned Batchelder2023-04-274-21/+16
|
* fix: source paths with trailing slashes causing inconsistent sources in XML ↵Kevin Brown-Silva2023-04-272-1/+16
| | | | | | | | | | | | | | | | | | | report with relative_paths (#1608) * Added failing test for source with trailing slash This test is nearly identical to the one above it, with the only change being the source that is used. This may end up turning into a fixture instead if the tests end up being identical after the fix is made. * Strip trailing slash for relative source paths This fixes an issue introduced in 45cf7936ee605cfe06f7f5967a72a73198960120 where using `relative_files=True` and `src` with a trailing slash, the source inserted as `<sources>` in the XML report would also have a trailing slash. This also fixes an issue introduced in the same commit where an empty `<source>` would be inserted as well for cases where the `src` has a trailing slash.
* test: refactor and add a test of terminal link textNed Batchelder2023-04-263-10/+28
|
* build: fine-tune the messages we get from metacovNed Batchelder2023-04-261-0/+4
|
* fix: no need for terminal url except for html reportNed Batchelder2023-04-263-7/+9
|
* feat: add hyperlink to console output (#1613)Ricardo Newbery2023-04-262-2/+16
| | | | | * Add hyperlink to console output * python 3.7 compat version of detecting console tty
* docs: thanks Marc Gibbons for the tox.ini fix in f41f8382Ned Batchelder2023-04-261-0/+1
| | | | | How can it be that we now have three Marcs, but only just got our first Brian?!?
* docs: clean up for #1610. Thanks, Brian Grohe.Ned Batchelder2023-04-254-6/+13
|
* docs: a new page about migrating between versionsBrian Grohe2023-04-252-0/+27
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Added basic migraton docs changes Remove change that likely will not require migration changes Cannot determine what the behavior was before Updated ** replacement suggestion Remove extra indent at end of file Fix linting issue that needed a trailing indent Fix a typo in docs Removed .gitignore corrected a single rule Added basic migraton docs changes Fix linting issue that needed a trailing indent Fix a typo in docs Correct grammar issue Co-authored-by: Ned Batchelder <ned@nedbatchelder.com> Correct rule and spelling Remove personal gitignore config Removed duplicated license text Added extra space Take suggestions from ned Co-authored-by: Ned Batchelder <ned@nedbatchelder.com>
* build: remove some unneeded tox stepsNed Batchelder2023-04-251-6/+2
| | | | | Bernát Gábor pointed out that we don't need the pip installation steps because tox will have already installed the project.
* Set lint `basepython` to 3.7Marc Gibbons2023-04-241-0/+2
| | | | | 3.7 is the lowest common denominator of supported versions. Linting on more recent versions introduces new error messages.
* chore: make upgradeNed Batchelder2023-04-249-42/+47
|
* fix: Python 3.12 removed pkgutilsNed Batchelder2023-04-191-2/+6
|
* chore: make upgradeNed Batchelder2023-04-149-54/+47
|
* build: use htmlpreview.github.com for simpler report publishingNed Batchelder2023-04-131-1/+3
|
* build: find other .so files to clean between runsNed Batchelder2023-04-121-2/+4
| | | | | | The build/lib.macosx-13.3-x86_64-cpython-312/coverage/tracer.cpython-312-darwin.so file seems to cause VirtualenvTests to fail if it's carried over from 3.12.0a7 to 3.12.0a7+ built from source. Clean it out to prevent false failures.
* build: bump versionNed Batchelder2023-04-062-2/+8
|
* build: can't clean a thing until it exists!?Ned Batchelder2023-04-062-0/+2
|
* docs: sample HTML for 7.2.37.2.3Ned Batchelder2023-04-0612-50/+68
|
* docs: prep for 7.2.3Ned Batchelder2023-04-066-12/+14
|
* docs: add the fix for #1599, thanks Lewis GaulNed Batchelder2023-04-062-0/+7
|
* fix: save coverage data on SIGTERM (#1600)Lewis Gaul2023-04-062-2/+27
| | | | | | | * Add test that reproduces the issue * Suggested fix - always save data in sigterm exit flow * Address test failures on MacOS due to lack of 'Terminated' output on SIGTERM
* chore: make upgradeNed Batchelder2023-04-038-20/+20
|
* docs: more tweaking of the gold-file instructionsNed Batchelder2023-04-011-5/+19
|
* perf: make the context shortcodes even shorterNed Batchelder2023-04-015-62/+99
| | | | On the coverage.py metacov, this makes the HTML 5% smaller.
* build: update .git-blame-ignore-revsNed Batchelder2023-04-011-0/+3
|
* style: use double-quotes in JavaScriptNed Batchelder2023-04-011-10/+10
|
* chore: make upgrade to remove hashesNed Batchelder2023-03-2610-1864/+303
|
* build: no longer use hashed pins #1592Ned Batchelder2023-03-267-8/+11
|
* chore: make upgradeNed Batchelder2023-03-2610-106/+100
|
* build: update .git-blame-ignore-revsNed Batchelder2023-03-221-0/+1
|
* style: double quotesNed Batchelder2023-03-2220-230/+230
|
* build: update .git-blame-ignore-revsNed Batchelder2023-03-221-0/+3
|
* style: use double-quotesNed Batchelder2023-03-227-170/+170
|
* style: clean up #1587Ned Batchelder2023-03-2210-37/+43
|
* docs: add compact HTML context reports to the changelogNed Batchelder2023-03-222-1/+7
|
* fix: put contexts dict in <script> and reveal them using JavaScript (#1587)Oleh Krehel2023-03-227-17/+65
| | | | | | | | | | | | | | | * Put contexts dict in <script> and reveal them using JavaScript Fixes #1584 * Address review comments * coverage/htmlfiles/style.css: Align the contexts to the right * coverage/htmlfiles/style.scss: Match style.css * coverage/html.py: Fix linting and mypy errors * two_tests_py.html: make update-gold
* docs: fix some formatting in contributing.rstNed Batchelder2023-03-211-7/+6
|
* docs: correct some misspellings and add good words to the dictNed Batchelder2023-03-213-1/+21
|
* build(docs): sort the spelling dictNed Batchelder2023-03-211-24/+24
|
* build(docs): only load sphinxcontrib.spelling if we are spell-checking #1593Ned Batchelder2023-03-211-1/+3
|
* test: check the HTML for context outputNed Batchelder2023-03-213-0/+224
|
* test: provide more guidance about working with gold filesNed Batchelder2023-03-214-7/+25
| | | | And make it easier to add new gold tests.
* build: tidy up the clean actionNed Batchelder2023-03-211-2/+2
| | | | | | | clean_platform was added in 7379c811580cd27e8695763ed5eb15746b133275 so we could remove platform-specific pyc files to run Linux tests. Those were removed in 76e80108c11b042e6e929641fe3f38975f5765ba, but it couldn't hurt to keep things organized this way.
* build: make sure build can be deletedNed Batchelder2023-03-211-0/+1
| | | | | If the virtualenv tests fail, they somehow leave behind build directories with 000 permissions.
* docs: three PRs from the PyCascades sprintNed Batchelder2023-03-201-0/+3
|
* docs: correct name alphabetizationNed Batchelder2023-03-201-3/+3
|
* docs: further slimming down of contribution instructionsNed Batchelder2023-03-201-27/+12
|
* docs: update contribution instructions (#1591)polkapolka2023-03-201-16/+29
| | | | | | | * Updating contribution to include fork instructions * Fixing urls * Fix urls
* docs: additional clarity for getting started + contributing (#1590)Kassandra Keeton2023-03-201-2/+4
| | | | | | | | | | | | | * additional clarity for getting started + contributing * Apply suggestions from code review Updating formatting (limitation of 79 characters for linting),. Co-authored-by: Ned Batchelder <ned@nedbatchelder.com> --------- Co-authored-by: Ned Batchelder <ned@nedbatchelder.com>