pytest-cov
                                
                                 pytest-cov copied to clipboard
                                
                                    pytest-cov copied to clipboard
                            
                            
                            
                        Coverage plugin for pytest.
# Summary When supplying `--cov-config=$file` (where `$file` is e.g. `setup.cfg`) in the presence of a `tox.ini` with a `[pytest]` section, pytest/coverage will continue to pick up configuration from `tox.ini`. ##...
# Summary There is an issue when installing pytest-cov with require hashes mode. We install from pip with all hahes provided on target machine. requirements.txt is generated via pipenv. ##...
# Summary The following problem has two objects that reference each other and a `__del__` method in one of the classes. pytest-cov incorrectly reports that the `__del__` method hasn't been...
I'm going through the poetry.lock file in one of my projects and searching for packages that still use `six` in order to help the package maintainers drop support for python...
# Description We are using the pytest-cov within our project in our GitHub workflow to check that our tests cover at least 90% of our code, and I noticed that...
# Summary Our tests fail with a message similar to `FAIL Required test coverage of 54.18% not reached. Total coverage: 54.18%` as you can see from this message, it actually...
I am using multiprocessing.Process in some file. When I run test just for that file, seems the coverage data is OK. ``` py.test --cov=data_utils --cov-report=html -vv -s tests/test_utils_multiprocessing.py ``` And...
When running `pytest` with the `--cov` option, the report contains "missing" entries for a few files with line number `0` reported as the culprit. Not all files exhibit this issue...
# Summary I am trying to use pytest-cov fails with pytest-xdist and want to get coverage for each trace function to ultimately see which lines and arcs are covered by...
Please go over all the sections and search https://pytest-cov.readthedocs.io/en/latest/ or https://coverage.readthedocs.io/en/latest/ before opening the issue. # Summary I'm configuring pytest on my existing repository with 130 tests. All tests make...