mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-18 21:46:35 +01:00
gnu: python-traittypes: Fix tests.
* gnu/packages/python-science.scm (python-traittypes)[arguments]: Add phase 'numpy-compatibility. Change-Id: I41d55d65d0dafd44029de38b3044d9fad378db50
This commit is contained in:
parent
a887e55978
commit
03a9ee6f88
1 changed files with 7 additions and 1 deletions
|
@ -3144,7 +3144,13 @@ (define-public python-traittypes
|
|||
(arguments
|
||||
(list
|
||||
;; This one test fails because it doesn't raise an expected exception.
|
||||
#:test-flags #~(list "-k" "not test_bad_values")))
|
||||
#:test-flags '(list "-k" "not test_bad_values")
|
||||
#:phases
|
||||
'(modify-phases %standard-phases
|
||||
(add-after 'unpack 'numpy-compatibility
|
||||
(lambda _
|
||||
(substitute* "traittypes/tests/test_traittypes.py"
|
||||
(("np\\.int") "int")))))))
|
||||
(propagated-inputs (list python-traitlets))
|
||||
(native-inputs
|
||||
(list python-numpy
|
||||
|
|
Loading…
Reference in a new issue