all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Nicolas Graves via Guix-patches via <guix-patches@gnu.org>
To: 74580@debbugs.gnu.org
Cc: Nicolas Graves <ngraves@ngraves.fr>
Subject: [bug#74580] [PATCH 08/14] gnu: python-coverage: Update to 7.6.8.
Date: Thu, 28 Nov 2024 08:52:20 +0100	[thread overview]
Message-ID: <20241128075235.20929-8-ngraves@ngraves.fr> (raw)
In-Reply-To: <20241128075235.20929-1-ngraves@ngraves.fr>

* gnu/packages/check.scm (python-coverage): Update to 7.6.8.
[arguments]<#:test-flags>: Describe why tests fail.
---
 gnu/packages/check.scm | 45 +++++++++++++++++++++++++-----------------
 1 file changed, 27 insertions(+), 18 deletions(-)

diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm
index 7e0efabc8f..9b1df2fb3d 100644
--- a/gnu/packages/check.scm
+++ b/gnu/packages/check.scm
@@ -2441,34 +2441,43 @@ (define-public python-testrepository
 (define-public python-coverage
   (package
     (name "python-coverage")
-    (version "7.6.7")
+    (version "7.6.8")
     (source
      (origin
        (method url-fetch)
        (uri (pypi-uri "coverage" version))
        (sha256
         (base32
-         "094x8fsqfp7blrz3wh823p5vvzdrri5mw17z32hwjh8lwhk4i7fp"))))
+         "1z3wycig8hy7iq9nxwiiiyxn01yblnj69yl2dp424s5hxl1qaawb"))))
     (build-system pyproject-build-system)
     (arguments
      (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")
+      #~(list
+         "--numprocesses" (number->string (parallel-job-count))
+         ;; XXX: Unable to properly compare reports.
+         "--ignore=tests/test_report.py"
+         ;; XXX: PyTracer or missing dependencies.
+         "--ignore=tests/test_venv.py"
+         "--ignore=tests/test_plugins.py"
+         "--ignore=tests/test_debug.py"
+         ;; XXX: Unclear why these fail.
+         "--ignore=tests/test_python.py"
+         "--deselect=tests/test_concurrency.py\
+::SigtermTest::test_sigterm_multiprocessing_saves_data"
+         ;; XXX: Unexpected paths order.
+         "--ignore=tests/test_process.py"
+         ;; XXX: PermissionError
+         "--deselect=tests/test_annotate.py::AnnotationGoldTest::test_multi"
+         ;; XXX: Needs C extension
+         "--deselect=tests/test_cmdline.py::CmdLineStdoutTest::test_version"
+         ;; XXX: Finds more files at toplevel
+         "--deselect=tests/test_api.py::RelativePathTest::test_files_up_one_level"
+         "--deselect=tests/test_xml.py::XmlReportTest::test_no_duplicate_packages"
+         ;; XXX: zip1 module missing.
+         "--deselect=tests/test_filereporter.py::FileReporterTest::test_zipfile"
+         ;; XXX: Checking coverage for too much files, not only the target one.
+         "--deselect=tests/test_oddball.py::DoctestTest::test_doctest")
       #:phases
       #~(modify-phases %standard-phases
           (add-after 'unpack 'patch-pyproject
-- 
2.46.0





  parent reply	other threads:[~2024-11-28  7:54 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-11-28  7:44 [bug#74580] [PATCH 00/14] [python-team] Nicolas Graves via Guix-patches via
2024-11-28  7:52 ` [bug#74580] [PATCH 01/14] gnu: python-prawcore: Update to 2.4.0 Nicolas Graves via Guix-patches via
2024-11-28  7:52   ` [bug#74580] [PATCH 02/14] gnu: python-praw: Update to 7.8.1 Nicolas Graves via Guix-patches via
2024-11-28  7:52   ` [bug#74580] [PATCH 03/14] gnu: giara: Update to 1.1.0 Nicolas Graves via Guix-patches via
2024-11-28  7:52   ` [bug#74580] [PATCH 04/14] gnu: cpplint: Add missing native inputs Nicolas Graves via Guix-patches via
2024-11-28  7:52   ` [bug#74580] [PATCH 05/14] gnu: python-ads: Add missing native-inputs Nicolas Graves via Guix-patches via
2024-11-28  7:52   ` [bug#74580] [PATCH 06/14] gnu: python-tqdm: Update to 4.67.1 Nicolas Graves via Guix-patches via
2024-11-28  7:52   ` [bug#74580] [PATCH 07/14] gnu: python-fsspec: Update to 2024.10.0 Nicolas Graves via Guix-patches via
2024-11-28  7:52   ` Nicolas Graves via Guix-patches via [this message]
2024-11-28  7:52   ` [bug#74580] [PATCH 09/14] gnu: python-websockets: Update to 13.1 Nicolas Graves via Guix-patches via
2024-11-28  7:52   ` [bug#74580] [PATCH 10/14] gnu: python-pytest-httpx: Update to 0.34.0 Nicolas Graves via Guix-patches via
2024-11-28  7:52   ` [bug#74580] [PATCH 11/14] gnu: python-coveralls: Update to 4.0.1 Nicolas Graves via Guix-patches via
2024-11-28  7:52   ` [bug#74580] [PATCH 12/14] gnu: python-httpcore: Update to 1.0.7 Nicolas Graves via Guix-patches via
2024-11-28  7:52   ` [bug#74580] [PATCH 13/14] gnu: python-httpx: Update to 0.27.2 Nicolas Graves via Guix-patches via
2024-11-28  7:52   ` [bug#74580] [PATCH 14/14] gnu: python-joblib: Update to 1.4.2 Nicolas Graves via Guix-patches via

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20241128075235.20929-8-ngraves@ngraves.fr \
    --to=guix-patches@gnu.org \
    --cc=74580@debbugs.gnu.org \
    --cc=ngraves@ngraves.fr \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.