@@ -9,23 +9,29 @@ Changelog
9
9
10
10
11
11
* `--cov-fail-under ` no longer causes `pytest --collect-only ` to fail
12
- Contributed by Zac Hatfield-Dodds in
13
- `#511 <https://github.com/pytest-dev/pytest-cov/pull/511 >`_.
12
+ 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+.
25
- Contributed by Christian Fetzer in
26
- ` #536 < https://github.com/ pytest-dev/pytest-cov/issues/536 >`_ .
27
- * Use modern way to specify hook options to avoid deprecation warnings with pytest >=7.2.
28
- Contributed by Ronny Pfannschmidt in `#550 <https://github.com/pytest-dev/pytest-cov/pull/550 >`_.
31
+ Contributed by Christian Fetzer in ` #536 < https://github.com/pytest-dev/pytest-cov/issues/536 >`_.
32
+ * Modernized pytest hook implementation .
33
+ Contributed by Bruno Oliveira in ` #549 < https://github.com/ pytest-dev/pytest-cov/pull/549 >`_
34
+ and Ronny Pfannschmidt in `#550 <https://github.com/pytest-dev/pytest-cov/pull/550 >`_.
29
35
30
36
31
37
3.0.0 (2021-10-04)
0 commit comments