sharlatan pushed a commit to branch python-team
in repository guix.
commit f6b8faf14e67c93c0298ac47d3955b931c241bd2
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Fri Nov 15 23:10:11 2024 +0000
gnu: python-coverage: Update to 7.6.7.
* gnu/packages/check.scm (python-coverage): Update to 7.6.7.
[build-system]: Swap to pyproject-build-system.
[arguments]<tests>: Enable them. <test-flags>: Skip some failing
tests. <phases>: Add patch-pyproject, fix-conftest.
[native-inputs]: Add python-pytest, python-pytest-xdist, python-flaky,
python-setuptools, and python-wheel.
Change-Id: Ib69fbec45876f5f13e0e925c7768cef8fd6eb52c
---
gnu/packages/check.scm | 47 ++++++++++++++++++++++++++++++++++++++++++-----
1 file changed, 42 insertions(+), 5 deletions(-)
diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm
index 8a2cb2a14a..082341342b 100644
--- a/gnu/packages/check.scm
+++ b/gnu/packages/check.scm
@@ -2411,18 +2411,55 @@ have failed since the last commit or what tests are
currently failing.")))
(define-public python-coverage
(package
(name "python-coverage")
- (version "6.4.3")
+ (version "7.6.7")
(source
(origin
(method url-fetch)
(uri (pypi-uri "coverage" version))
(sha256
(base32
- "157vndwrzyv9ypn2w3b6g8gv7vw07v994hq8nxasdb75k3ry2apc"))))
- (build-system python-build-system)
+ "094x8fsqfp7blrz3wh823p5vvzdrri5mw17z32hwjh8lwhk4i7fp"))))
+ (build-system pyproject-build-system)
(arguments
- ;; FIXME: 95 tests failed, 539 passed, 6 skipped, 2 errors.
- '(#:tests? #f))
+ (list
+ #:test-flags
+ #~(list "--numprocesses=auto"
+ ;; XXX: Tests fail for multiple assertion reasons or missing
+ ;; fake modules.
+ "--ignore=tests/test_venv.py"
+ "--ignore=tests/test_report.py"
+ "--ignore=tests/test_plugins.py"
+ "--ignore=tests/test_debug.py"
+ "--ignore=tests/test_xml.py"
+ "--ignore=tests/test_python.py"
+ "--ignore=tests/test_concurrency.py"
+ "--ignore=tests/test_process.py"
+
"--deselect=tests/test_annotate.py::AnnotationGoldTest::test_multi"
+
"--deselect=tests/test_cmdline.py::CmdLineStdoutTest::test_version"
+
"--deselect=tests/test_api.py::RelativePathTest::test_files_up_one_level"
+
"--deselect=tests/test_filereporter.py::FileReporterTest::test_zipfile"
+ "--deselect=tests/test_oddball.py::DoctestTest::test_doctest")
+ #:phases
+ #~(modify-phases %standard-phases
+ (add-after 'unpack 'patch-pyproject
+ (lambda _
+ (substitute* "pyproject.toml"
+ ;; Just run pytest with no frills.
+ (("addopts.*") ""))))
+ (add-before 'check 'fix-conftest
+ ;; It tries to scan the whole sys.path and "find some place to
+ ;; write to".
+ (lambda _
+ (with-output-to-file (string-append (getcwd) "/test.pth")
+ (lambda _ (display "")))
+ (substitute* "tests/conftest.py"
+ (("map(Path, sys.path)") (format #f "[~s]" (getcwd)))))))))
+ (native-inputs
+ (list python-pytest
+ python-pytest-xdist ; hardcoded in tests/conftests.py
+ python-flaky
+ python-setuptools
+ python-wheel))
(propagated-inputs
(list python-tomli))
(home-page "https://coverage.readthedocs.io")