coveragepy
coveragepy copied to clipboard
The code coverage tool for Python
Mypyc is a compiler that comes with Mypy. It uses type annotations to convert Python modules to C extensions. This doesn't sound like something that could possibly work, but in...
This method lets you purge all data for one or more contexts from coverage data, which is useful when updating with newly obtained data for those contexts. I'm using this...
`coverage` is a great tool, complementing unit testing to create more stable projects. Developers using screen-readers, like myself, might have some difficulty in trying to improve coverage of their project....
**Describe the bug** The [run]relative_files settings makes coverage `store relative file paths in the data file`. However this is only valid for files in or below the folder from which...
**Describe the bug** When running with `tox --parallel auto`, files are missing or empty **To Reproduce** Environment: Python 3.11.2 on Fedora 38, Tox 4.6.1 Tox is installing the latest coverage,...
**Describe the bug** I've been getting a lot of errors about "no such table" or "table already exists" when trying to run `tox` with coverage reporting. It looks a fair...
As codecov.io does not have support for pragma no cover comments we need need to find a way to produce some coverage reports that report the "skipped" lines as being...
When doing https://github.com/pypa/virtualenv/pull/2477 I noticed that with relative_files report.omit seems no longer active. See failing run https://github.com/pypa/virtualenv/actions/runs/3824948711/jobs/6507540653, while before turning relative files on here https://github.com/pypa/virtualenv/actions/runs/3821105582/jobs/6499921063 seems to still work. The...
**Describe the bug** We are getting 2 partials reported on a `def __init__(` line. I don't see how that can be a partial. **To Reproduce** Coverage report at: https://app.codecov.io/gh/aio-libs/aiohttp-session Source...
**Describe the bug** Adding this to `.coveragerc` results in all source being ignored: ``` [report] exclude_lines = ... ``` **To Reproduce** How can we reproduce the problem? Please *be specific*....