summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gnu/packages/python-science.scm16
1 files changed, 15 insertions, 1 deletions
diff --git a/gnu/packages/python-science.scm b/gnu/packages/python-science.scm
index 49e46f7ff3..4de2b78af7 100644
--- a/gnu/packages/python-science.scm
+++ b/gnu/packages/python-science.scm
@@ -372,7 +372,21 @@ Features:
(build-system pyproject-build-system)
(arguments
(list
- #:test-flags #~(list "--pyargs" "numdifftools")
+ #:test-flags
+ #~(list "--pyargs" "numdifftools"
+ "-k" (string-join
+ ;; Tests failing with error: TypeError: a must be an array
+ ;; of real numbers, see
+ ;; <https://github.com/pbrod/numdifftools/issues/72>.
+ (list "not test_high_order_derivative"
+ "test_low_order_derivative_on_example_functions"
+ "test_sinx_div_x"
+ "test_complex_hessian_issue_35"
+
+ "numdifftools.fornberg.Taylor"
+ "numdifftools.fornberg.derivative"
+ "numdifftools.fornberg.taylor")
+ " and not "))
#:phases
#~(modify-phases %standard-phases
(add-after 'unpack 'relax-requirements