guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit 859b99253988fc2d4d2a0a21f3333a7b8dc62ec1
Author: Nicolas Graves <[email protected]>
AuthorDate: Tue Oct 28 18:33:04 2025 +0100
gnu: python-coverage: Update to 7.11.0.
* gnu/packages/check.scm (python-coverage): Update to 7.11.0.
[arguments]<#:test-flags>: Ignore additional failing tests.
Change-Id: I6aa86ed49b9f6d52120d14d5a7ea81222ea3140f
Signed-off-by: Sharlatan Hellseher <[email protected]>
---
gnu/packages/check.scm | 10 +++++++---
1 file changed, 7 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm
index 822a3da219..a4ce137f64 100644
--- a/gnu/packages/check.scm
+++ b/gnu/packages/check.scm
@@ -2393,14 +2393,13 @@ since the last commit or what tests are currently
failing.")
(define-public python-coverage
(package
(name "python-coverage")
- (version "7.9.2")
+ (version "7.11.0")
(source
(origin
(method url-fetch)
(uri (pypi-uri "coverage" version))
(sha256
- (base32
- "12qcm2j4bnc2gp6sci9brly2k406gp4jwjfpzxj04ag3a7x28w4r"))))
+ (base32 "0l403f6d59q8rik9vvzb6982qad0zrfj87dqydzsz8hwmh2dayqn"))))
(build-system pyproject-build-system)
(arguments
(list
@@ -2435,11 +2434,16 @@ since the last commit or what tests are currently
failing.")
;; No module named 'coverage.tracer'
"--deselect=tests/test_api.py::ApiTest::test_completely_zero_reporting"
"--deselect=tests/test_api.py::ApiTest::test_warnings"
+ "--deselect=tests/test_core.py::CoverageCoreTest::test_core_default"
+ "--deselect=tests/test_core.py::CoverageCoreTest\
+::test_core_request_ctrace_but_missing"
"--deselect=tests/test_oddball.py::RecursionTest::test_long_recursion_recovery"
;; XXX: Checking coverage for too much files, not only the target one.
"--deselect=tests/test_oddball.py::DoctestTest::test_doctest"
;; Module sys has no Python source
"--deselect=tests/test_api.py::ApiTest::test_warnings_suppressed"
+ ;; XXX: pythonpath is not set correctly to find the module
+
"--deselect=tests/test_oddball.py::MockingProtectionTest::test_os_path_exists"
;; prevent FAILs on slow riscv64 SBCs
#$@(if (equal? (%current-system) "riscv64-linux")
'("--deselect=tests/test_numbits.py::NumbitsOpTest::test_union"