You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Contributed by Zac Hatfield-Dodds in `#511 <https://github.com/pytest-dev/pytest-cov/pull/511>`_.
14
13
* Dropped support for multiprocessing (mostly because `issue 82408 <https://github.com/python/cpython/issues/82408>`_). This feature was
15
-
mostly working but made out test suite very flaky and slow.
14
+
mostly working but very broken in certain scenarios and made the test suite very flaky and slow.
16
15
17
-
There is builtin multiprocessing support in coverage and you can switch to that if you feel lucky. All you need is this in your
16
+
There is builtin multiprocessing support in coverage and you can migrate to that. All you need is this in your
18
17
``.coveragerc``::
19
18
20
19
[run]
21
20
concurrency = multiprocessing
22
21
parallel = true
23
22
sigterm = true
23
+
* Fixed deprecation in ``setup.py`` by trying to import setuptools before distutils.
24
+
Contributed by Ben Greiner in `#545 <https://github.com/pytest-dev/pytest-cov/pull/545>`_.
25
+
* Removed undesirable new lines that were displayed while reporting was disabled.
26
+
Contributed by Delgan in `#540 <https://github.com/pytest-dev/pytest-cov/pull/540>`_.
27
+
* Documentation fixes.
28
+
Contributed by Andre Brisco in `#543 <https://github.com/pytest-dev/pytest-cov/pull/543>`_
29
+
and Colin O'Dell in `#525 <https://github.com/pytest-dev/pytest-cov/pull/525>`_.
24
30
* Added support for LCOV output format via `--cov-report=lcov`. Only works with coverage 6.3+.
0 commit comments