futurile pushed a commit to branch python-team in repository guix. commit 585b2d3fed72c37aadb022aca14b0359102deedd Author: Steve George <st...@futurile.net> 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 <st...@futurile.net> --- 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 7284acf49f..cee5f5bfb6 100644 --- a/gnu/packages/astronomy.scm +++ b/gnu/packages/astronomy.scm @@ -4598,7 +4598,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))