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

commit 0654449641703b95ef6b2ab175fb64a1725a1766
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Sun Dec 14 22:04:42 2025 +0000

    gnu: python-glue-astronomy: Skip 3 tests.
    
    * gnu/packages/astronomy.scm (python-glue-astronomy): Skip 3 tests.
    
    Change-Id: I6d5099af4f6c396701ccdcef1439167f5ef9e23f
---
 gnu/packages/astronomy.scm | 16 ++++++++++++++--
 1 file changed, 14 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm
index d9f12722cb..23cd58a033 100644
--- a/gnu/packages/astronomy.scm
+++ b/gnu/packages/astronomy.scm
@@ -5094,6 +5094,7 @@ the Gizmo code, in particular, the FIRE cosmological 
simulations.")
       ;; tests: 77 passed, 2 skipped, 3 deselected
       #:test-flags
       #~(list "--pyargs" "glue_astronomy"
+              ;; XXX: See: 
<https://github.com/glue-viz/glue-astronomy/issues/117>.
               "-k" (string-join
                     ;; Not equal to tolerance rtol=1e-07, atol=0
                     (list "not test_from_spectrum1d[wcs3d]"
@@ -5101,8 +5102,19 @@ the Gizmo code, in particular, the FIRE cosmological 
simulations.")
                           ;; multi-dimensional. Please specify
                           ;; spectral_axis_index.
                           "test_spectrum1d_2d_data[2]"
-                          "test_spectrum1d_2d_data[3]")
-                    " and not "))))
+                          "test_spectrum1d_2d_data[3]"
+                          ;; AssertionError: assert False
+                          "test_identifier_casa"
+                          ;; AttributeError: module 'numpy' has no attribute
+                          ;; 'product'
+                          "test_reader_casa"
+                          "test_spectral_cube_io")
+                    " and not "))
+      #:phases
+      #~(modify-phases %standard-phases
+          (add-before 'check 'pre-check
+            (lambda _
+              (setenv "HOME" "/tmp"))))))
     (native-inputs
      (list python-mock
            python-pytest-astropy

Reply via email to