diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-03-27 00:03:11 +0000 |
---|---|---|
committer | Andreas Enge <andreas@enge.fr> | 2025-04-16 11:46:22 +0200 |
commit | f7cc9940e0c7773500353ef0fbe6cb6795dcec98 (patch) | |
tree | ff3cd9dc4a47d5d731888a4aa9600e07c0025da0 | |
parent | 8afbc6f9acb274d0b0adcfdfba0ee5a0114afb7e (diff) |
gnu: python-orthopy: Skip some tests, fix build.
* gnu/packages/maths.scm (python-orthopy) [arguments] <test-flags>: Skip
5 failing tests.
Change-Id: Ic5e55d9a8a054eaba9f685e134a366dbfaa9bd8d
-rw-r--r-- | gnu/packages/maths.scm | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm index 4be9e71320..8d761e3911 100644 --- a/gnu/packages/maths.scm +++ b/gnu/packages/maths.scm @@ -4346,7 +4346,15 @@ recurrence relations.") ;; These tests fails with unexpected keyword arguments ;; in calls to cplot. #~(list "--deselect" "tests/test_u3.py::test_write_single" - "--deselect" "tests/test_u3.py::test_write_tree"))) + "--deselect" "tests/test_u3.py::test_write_tree" + "-k" (string-join + ;; Tests fail in arrays comprising. + (list "not test_chebyshev1_p11[2-y2]" + "test_chebyshev1_p11[4-y4]" + "test_eval[1-ref1]" + "test_eval[t2-ref2]" + "test_eval[t3-ref3]") + " and not ")))) (native-inputs (list python-matplotx python-meshio |