summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gnu/packages/astronomy.scm4
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))