gnu: python-funsor: Disable one test.

* gnu/packages/machine-learning.scm (python-funsor)[arguments]: Disable
test_function_of_numeric_array.

Change-Id: I76f38abb3db01f8732e0b60dfa65690d1b98db4a
This commit is contained in:
Ricardo Wurmus 2025-03-21 13:43:21 +01:00 committed by Andreas Enge
parent 631c03a80a
commit b744e8a144
No known key found for this signature in database
GPG key ID: F7D5C9BF765C61E3

View file

@ -234,8 +234,16 @@ family of functions.")
(sha256
(base32 "0cgysij0dix0fikyz2x4f8jvaskm5s5a04s07chzaz2dw1fpxdq8"))))
(build-system pyproject-build-system)
(arguments ; disable flaky test
(list #:test-flags '(list "-k" "not test_integrate_variable[x23-i]")))
(arguments
(list
#:test-flags
'(list "-k"
(string-append
;; Disable flaky test
"not test_integrate_variable[x23-i]"
;; XXX This test fails because the length of arguments
;; is longer than the length of inputs.
" and not test_function_of_numeric_array"))))
(propagated-inputs (list python-makefun python-multipledispatch
python-numpy python-opt-einsum
python-typing-extensions))