andreas pushed a commit to branch python-team
in repository guix.
commit 77254ef42da21593fcaf84e36957c882eb241511
Author: Steve George <[email protected]>
AuthorDate: Sat Apr 12 14:14:41 2025 +0100
gnu: python-jplephem-build: Fix build.
* gnu/packages/astronomy.scm (python-jplephem) [phases]: Ignore failing
tests.
Change-Id: I33af71f580cd25bbd126fcf0c5cf1164f9c892ef
Signed-off-by: Steve George <[email protected]>
---
gnu/packages/astronomy.scm | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/astronomy.scm b/gnu/packages/astronomy.scm
index 69a0d5a583..8cbd9048af 100644
--- a/gnu/packages/astronomy.scm
+++ b/gnu/packages/astronomy.scm
@@ -4599,7 +4599,9 @@ specifically in the C code.")
(replace 'check
(lambda* (#:key tests? #:allow-other-keys)
(when tests?
- (invoke "python" "-m" "unittest" "discover" "-s" "test")))))))
+ ;; python3.11 test fails due to read-only file system
+ (invoke "python" "-m" "unittest" "discover" "-s" "test"
+ "-k not test_forget" )))))))
(native-inputs
(list python-setuptools
python-wheel))