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

commit 468f6e55050c95e6fe1ee88f2b1b6628b6a2b12c
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Fri Mar 20 21:20:07 2026 +0000

    gnu: python-holodeck: Run tests in single thread.
    
    * gnu/packages/astronomy.scm (python-holodeck)[arguments] <test-flags>:
    Run tests in single thread, skip one.
    [native-inputs]: Remove python-pytest-xdist, and python-wheel.
    
    Change-Id: Ie7930093870206f154d600a598a05ab2d70c8ef6
---
 gnu/packages/astronomy.scm | 16 +++++++++-------
 1 file changed, 9 insertions(+), 7 deletions(-)

diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm
index 9293561962..7acbce9a24 100644
--- a/gnu/packages/astronomy.scm
+++ b/gnu/packages/astronomy.scm
@@ -5860,24 +5860,26 @@ scipy.io}.")
     (version "1.5.2")
     (source
      (origin
-       (method git-fetch) ; no tests in the PyPI tarball
+       (method git-fetch)
        (uri (git-reference
-             (url "https://github.com/nanograv/holodeck";)
-             (commit (string-append "v" version))))
+              (url "https://github.com/nanograv/holodeck";)
+              (commit (string-append "v" version))))
        (file-name (git-file-name name version))
        (sha256
         (base32 "0jz54fb6yyling2a756qqahixpn1wgxmhhqmv6pf0iqds019v9k7"))))
     (build-system pyproject-build-system)
     (arguments
      (list
+      ;; tests: 70 passed, 1 deselected, 15 warnings
+      ;; XXX: Tests may take up to 3375.23s (0:56:15)
       #:test-flags
-      #~(list "--numprocesses" (number->string (parallel-job-count)))))
+      #~(list (string-append "--deselect=holodeck/discrete/tests/"
+                             "test_evolution.py::"
+                             "Test_Composite_Hardening::test_basics_circ"))))
     (native-inputs
      (list python-cython-0
            python-pytest
-           python-pytest-xdist
-           python-setuptools
-           python-wheel))
+           python-setuptools))
     (propagated-inputs
      (list python-astropy
            python-cosmopy

Reply via email to