[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
311/361: gnu: python-coverage: Update to 7.6.7.
From: |
guix-commits |
Subject: |
311/361: gnu: python-coverage: Update to 7.6.7. |
Date: |
Fri, 22 Nov 2024 06:01:04 -0500 (EST) |
andreas pushed a commit to branch python-team
in repository guix.
commit a37e95943f372be203bc0da6f0d516974333af67
Author: Sharlatan Hellseher <sharlatanus@gmail.com>
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")
- 346/361: gnu: python-cloudpickle: Update to 3.1.0., (continued)
- 346/361: gnu: python-cloudpickle: Update to 3.1.0., guix-commits, 2024/11/22
- 349/361: gnu: python-flask: Update to 3.1.0., guix-commits, 2024/11/22
- 321/361: gnu: python-py: Improve package style., guix-commits, 2024/11/22
- 357/361: gnu: python-httpbin: Update to 0.10.2., guix-commits, 2024/11/22
- 268/361: gnu: python-yt: Remove relax-requirements phase., guix-commits, 2024/11/22
- 276/361: gnu: python-accupy: Adjust inputs., guix-commits, 2024/11/22
- 282/361: gnu: python-mutagen: Update to 1.47.0., guix-commits, 2024/11/22
- 284/361: gnu: beets: Update to 2.0.0., guix-commits, 2024/11/22
- 293/361: gnu: beets-bandcamp: Add maintenance note., guix-commits, 2024/11/22
- 303/361: gnu: python-ptyprocess: Update to 0.7.0., guix-commits, 2024/11/22
- 311/361: gnu: python-coverage: Update to 7.6.7.,
guix-commits <=
- 315/361: gnu: python-cffi: Update to 1.17.1., guix-commits, 2024/11/22
- 319/361: gnu: python-jedi: Update to 0.19.2., guix-commits, 2024/11/22
- 340/361: gnu: python-werkzeug: Update to 3.1.3., guix-commits, 2024/11/22
- 356/361: gnu: python-apispec-webframeworks: Update to 1.2.0., guix-commits, 2024/11/22
- 361/361: gnu: python-pydantic: Update to 1.10.19., guix-commits, 2024/11/22
- 355/361: gnu: Remove python-flask-jwt., guix-commits, 2024/11/22
- 266/361: gnu: python-nose-exclude: Adjust iputs., guix-commits, 2024/11/22
- 292/361: gnu: Add python-rich-tables., guix-commits, 2024/11/22
- 298/361: gnu: python-exceptiongroup: Move to python-build., guix-commits, 2024/11/22
- 306/361: gnu: python-pytest-timeout: Update to 2.3.1., guix-commits, 2024/11/22