guix_mirror_bot pushed a commit to branch python-team
in repository guix.

commit 990aa98c64abe95cd390f350bae3ead4421a67d8
Author: Nicolas Graves <[email protected]>
AuthorDate: Tue Oct 28 19:52:50 2025 +0100

    gnu: python-contourpy: Remove python-pytest-cov native-input.
    
    * gnu/packages/python-xyz.scm (python-contourpy)
    [arguments]<#:test-flags>: Ignore load-heavy tests.
    [native-inputs]: Remove python-pytest-cov.
    
    Change-Id: I6693a92bd3a3425193bded91fa0cdcf5f9f46803
    Signed-off-by: Sharlatan Hellseher <[email protected]>
---
 gnu/packages/python-xyz.scm | 11 +++++++----
 1 file changed, 7 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index cebe4851fb..7d7c177b9b 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -3187,9 +3187,13 @@ into dataclasses.")
         (base32 "0m5by0zqycm87ip6kcixya5hnsqji2alzibz3dklq0ssf515k55n"))))
     (build-system pyproject-build-system)
     (arguments
-     ;; Image tests require matplotlib and create a circular dependency.
-     (list #:test-flags
-           #~(list "-m" "not image")))
+     (list
+      #:test-flags
+      #~(list
+         ;; Image tests require matplotlib and create a circular dependency.
+         "-m" "not image"
+         ;; Tests that pass but avoided for load reasons.
+         "-k" "not test_filled_random_big and not test_lines_random_big")))
     (propagated-inputs
      (list python-numpy))
     (native-inputs
@@ -3198,7 +3202,6 @@ into dataclasses.")
            pkg-config
            pybind11
            python-pytest
-           python-pytest-cov
            python-wurlitzer))
     (home-page "https://contourpy.readthedocs.io/";)
     (synopsis

Reply via email to