guix_mirror_bot pushed a commit to branch astro-updates
in repository guix.

commit f95cf28692497105321b7f94d6af170347730b18
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Thu Aug 21 13:02:40 2025 +0100

    gnu: python-asdf-astropy: Skip some example tests.
    
    * gnu/packages/astronomy.scm (python-asdf-astropy) [arguments]
    <test-flags>: Skip 8 example tests.
    
    Change-Id: I41573eef52d6c9b305d50b6e5349531cf801e9d9
---
 gnu/packages/astronomy.scm | 15 ++++++++++++++-
 1 file changed, 14 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm
index 50ffd4762f..f2291a9d08 100644
--- a/gnu/packages/astronomy.scm
+++ b/gnu/packages/astronomy.scm
@@ -1879,8 +1879,21 @@ implementation of the ASDF Standard.")
     (build-system pyproject-build-system)
     (arguments
      (list
+      ;; tests: 4419 passed, 1 skipped
       #:test-flags
-      #~(list "--numprocesses" (number->string (parallel-job-count)))
+      #~(list "--numprocesses" (number->string (parallel-job-count))
+              "-k" (string-join
+                    ;; AttributeError: 'AsdfFile' object has no attribute
+                    ;; '_open_impl'
+                    (list "not test_legacy_icrs_deseialize"
+                          "test_read_examples[example0]"
+                          "test_read_examples[example1]"
+                          "test_read_examples[example2]"
+                          "test_read_examples[example3]"
+                          "test_read_examples[example4]"
+                          "test_read_examples[example5]"
+                          "test_read_examples[example6]")
+                    " and not "))
       #:phases
       #~(modify-phases %standard-phases
           (add-before 'check 'set-home-env

Reply via email to