summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2025-10-28 18:33:04 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-11-20 01:06:36 +0000
commitf803f4ef379b5ed6642d311632244d65837d2b50 (patch)
tree802e933c3f091cfdadb06f3866673890bc1ec1ae /gnu
parentf6332d01c4bf3b95f6d54cfe2fd513a2c5c95b6b (diff)
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 <sharlatanus@gmail.com>
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/check.scm10
1 files changed, 7 insertions, 3 deletions
diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm
index 798cb0af50a..986aeabc301 100644
--- a/gnu/packages/check.scm
+++ b/gnu/packages/check.scm
@@ -2394,14 +2394,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
@@ -2436,11 +2435,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"