mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-12 06:06:53 -05:00
gnu: python-numpy: Skip 2 more tests on riscv64-linux.
* gnu/packages/python-xyz.scm (python-numpy)[arguments]: Adjust custom 'check phase to skip two more tests when building for riscv64-linux.
This commit is contained in:
parent
77db24ff5b
commit
1e3046810a
1 changed files with 8 additions and 1 deletions
|
@ -5457,7 +5457,14 @@ (define-public python-numpy
|
|||
;; These tests may fail on 32-bit systems (see:
|
||||
;; https://github.com/numpy/numpy/issues/18387).
|
||||
"not test_float_remainder_overflow "
|
||||
"and not test_pareto"))))))))
|
||||
"and not test_pareto"
|
||||
;; These tests seem to fail on machines without
|
||||
;; an FPU is still under investigation upstream.
|
||||
;; https://github.com/numpy/numpy/issues/20635
|
||||
#$@(if (target-riscv64?)
|
||||
`(" and not test_float"
|
||||
" and not test_fpclass")
|
||||
'())))))))))
|
||||
(native-inputs
|
||||
(list python-cython
|
||||
python-hypothesis-next
|
||||
|
|
Loading…
Reference in a new issue