pytest-cov icon indicating copy to clipboard operation
pytest-cov copied to clipboard

Coverage plugin for pytest.

Results 169 pytest-cov issues
Sort by recently updated
recently updated
newest added

It is just a warning however I cannot figure out what exactly it is so better is to ask :) ```console + /usr/bin/python3 setup.py build_sphinx -b man --build-dir build/sphinx running...

I have a problem with CiLocks where if I try to use any of the features (exept for IP logger and Webcam) it just says INFO: scrcpy 1.17 adb: error:...

The readme mentions [1] that sys.path doesn't include CWD, but it would be good to have a specific section for users coming from coverage. I have to admit to skimming...

# Summary Running pytest with pytest-cov plugin or coverage standalone randomly results in error: ``` INTERNALERROR> Traceback (most recent call last): INTERNALERROR> File "/Users/jacek/temp/coverage-error/.venv/lib/python3.8/site-packages/_pytest/main.py", line 269, in wrap_session INTERNALERROR> session.exitstatus...

# Summary When creating an annotate report, if the function is only one line, it'll get marked as '>', whether it's being run or not. ## Expected vs actual result...

# pytest-cov not respecting the --cov flag ## Expected vs actual result I am expecting that the `--cov` flag directs which directory's(package's) coverage is to be calculated. I only want...

Add support for multiprocess library as outlined in: https://github.com/pytest-dev/pytest-cov/issues/464 This is a work in progress since no documentation or tests have been updated.

# Summary Would you accept a patch to support the multiprocess library? https://pypi.org/project/multiprocess/ Currently the hooks in [embed.py](https://github.com/pytest-dev/pytest-cov/blob/master/src/pytest_cov/embed.py#L36) only install hooks for the built in multiprocessing library. I have written...

# Summary When COV_CORE_SRC is a relative directory and a subprocess first changes its working directory before invoking Python then coverage won't associate the ## Expected vs actual result Get...

I usually run pytest-cov via tox, with `tox.ini` being ``` [tox] envlist = py3 isolated_build = True [testenv] pytest --cov foobar ``` With this, tox does not create a `coverage.xml`....