mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
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:
parent
631c03a80a
commit
b744e8a144
1 changed files with 10 additions and 2 deletions
|
@ -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))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue