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

commit 413e1baeeb96d42dc98bc975fa656b222714ac63
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Tue Sep 23 10:10:06 2025 +0100

    gnu: python-yt: Skip some tests.
    
    * gnu/packages/astronomy.scm (python-yt)[arguments]<test-flags>: Skip
    one more test which fails on deprecation, ignore some documentation
    tests.
    
    Change-Id: I231adf3a785e8340523e4d2bf7291f8f13ffc116
---
 gnu/packages/astronomy.scm | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm
index e5a38226be..5328c43f59 100644
--- a/gnu/packages/astronomy.scm
+++ b/gnu/packages/astronomy.scm
@@ -9218,6 +9218,9 @@ using (multivariate) polynomials.")
       #:build-backend "setuptools.build_meta"
       #:test-flags
       #~(list "--numprocesses" (number->string (parallel-job-count))
+              ;; Failed: 'yield' keyword is allowed in fixtures, but not in
+              ;; tests (test_recipe)
+              "--ignore=doc/source/cookbook/tests/test_cookbook.py"
               "-k" (string-join
                     ;; Tests requiring networking.
                     (list "not test_load_sample_timeout"
@@ -9227,7 +9230,10 @@ using (multivariate) polynomials.")
                           "test_registry_byte_size_dtype"
                           "test_registry_byte_size_sign"
                           ;; AssertionError: Arrays are not equal
-                          "test_field_cut_off_axis_octree")
+                          "test_field_cut_off_axis_octree"
+                          ;; UserWarning: pkg_resources is deprecated as an
+                          ;; API
+                          "test_glue_data_object")
                     " and not "))
       #:phases
       #~(modify-phases %standard-phases

Reply via email to