diff options
author | Steve George <steve@futurile.net> | 2025-04-12 14:14:41 +0100 |
---|---|---|
committer | Andreas Enge <andreas@enge.fr> | 2025-04-16 11:46:35 +0200 |
commit | 77254ef42da21593fcaf84e36957c882eb241511 (patch) | |
tree | 30ef66b0d9099462272c3ea75faaca7c41948425 | |
parent | 568867b62e1cd17d77c75e6d782235d106d9cec5 (diff) | |
download | guix-77254ef42da21593fcaf84e36957c882eb241511.tar.gz guix-77254ef42da21593fcaf84e36957c882eb241511.zip |
gnu: python-jplephem-build: Fix build.
* gnu/packages/astronomy.scm (python-jplephem) [phases]: Ignore failing tests.
Change-Id: I33af71f580cd25bbd126fcf0c5cf1164f9c892ef
Signed-off-by: Steve George <steve@futurile.net>
-rw-r--r-- | gnu/packages/astronomy.scm | 4 |
1 files changed, 3 insertions, 1 deletions
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)) |