Changelog for
python310-pytest-cov-4.0.0-1.1.noarch.rpm :
* Thu Dec 08 2022 pgajdosAATTsuse.com- six is not required for build
* Wed Nov 30 2022 Daniel Garcia
- Disable test_dist_boxed, broken with latest version of pytest-xdist, gh#pytest-dev/pytest-cov#565
* Mon Nov 28 2022 Daniel Garcia - Disable failing tests (test_contexts) that fails because of the new version of python-coverage, gh#pytest-dev/pytest-cov#570
* Fri Nov 25 2022 Daniel Garcia - Remove support-coverage-62.patch- Remove support-setuptools60.patch- Update to 4.0.0:
* --cov-fail-under no longer causes pytest --collect-only to fail Contributed by Zac Hatfield-Dodds in #511.
* Dropped support for multiprocessing (mostly because issue 82408). This feature was mostly working but very broken in certain scenarios and made the test suite very flaky and slow.
* There is builtin multiprocessing support in coverage and you can migrate to that. All you need is this in your .coveragerc: [run] concurrency = multiprocessing parallel = true sigterm = true
* Fixed deprecation in setup.py by trying to import setuptools before distutils. Contributed by Ben Greiner in #545.
* Removed undesirable new lines that were displayed while reporting was disabled. Contributed by Delgan in #540.
* Documentation fixes. Contributed by Andre Brisco in #543 and Colin O\'Dell in #525.
* Added support for LCOV output format via --cov-report=lcov. Only works with coverage 6.3+. Contributed by Christian Fetzer in #536.
* Modernized pytest hook implementation. Contributed by Bruno Oliveira in [#549] and Ronny Pfannschmidt in #550.
* Sun Jul 17 2022 Ben Greiner - Add support-setuptools60.patch gh#pytest-dev/pytest-cov#545
* Mon Dec 20 2021 Steve Kowalik - Add support-coverage-62.patch:
* Support coverage >= 6.2
* Wed Nov 10 2021 Ondřej Súkup - drop pytest-cov-pr453-coverage54.patch- update to 3.0.0
* drop support for py2 and python-3.5
* Tue Sep 14 2021 Steve Kowalik - Inject multibuild to avoid build cycles.
* Thu Feb 04 2021 Ben Greiner - Add pytest-cov-pr453-coverage54.patch to work with coverage 5.4 gh#pytest-dev/pytest-cov#453
* Wed Jan 27 2021 Markéta Machová - Update to 2.11.1
* Fixed the missing coverage context when using subprocesses.
* Bumped minimum coverage requirement to 5.2.1. This prevents reporting issues.- Drop merged pytest62.patch
* Fri Jan 15 2021 Markéta Machová - Add pytest62.patch to make testsuite compatible with new pytest
* Fri Aug 21 2020 Marketa Calabkova - Update to 2.10.1
* Support for ``pytest-xdist`` 2.0, which breaks compatibility with ``pytest-xdist`` before 1.22.3 (from 2017).
* Fixed the ``LocalPath has no attribute startswith`` failure that occurred when using the ``pytester`` plugin in inline mode.
* Dropped support for Python 3 < 3.4, Pytest < 3.5 and Coverage < 4.4.
* Mon Jun 29 2020 Marketa Calabkova - Update to 2.10.0
* Improved the --no-cov warning. Now it\'s only shown if --no-cov is present before --cov.
* Removed legacy pytest support. Changed setup.py so that pytest>=4.6 is required.
* Tue Jun 09 2020 Tomáš Chvátal - Update to 2.9.0:
* Fixed RemovedInPytest4Warning when using Pytest 3.10. Contributed by Michael Manganiello in #354.
* Made pytest startup faster when plugin not active by lazy-importing. Contributed by Anders Hovmöller in #339.
* Various CI improvements. Contributed by Daniel Hahler in #363 and #364.
* Various Python support updates (drop EOL 3.4, test against 3.8 final). Contributed by Hugo van Kemenade in #336 and #367.
* Changed --cov-append to always enable data_suffix (a coverage setting). Contributed by Harm Geerts in #387.
* Changed --cov-append to handle loading previous data better (fixes various path aliasing issues).
* Various other testing improvements, github issue templates, example updates.
* Fixed internal failures that are caused by tests that change the current working directory by ensuring a consistent working directory when coverage is called. See #306 and coveragepy#881
* Wed Jan 15 2020 Tomáš Chvátal - Skip test_cover_looponfail as it fails with new pytest