mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 06:18:07 -05:00
gnu: vigra: Fix FTBFS with Numpy >= 1.15.
* gnu/packages/image.scm (vigra)[arguments]: Disable one more test.
This commit is contained in:
parent
6bbbdb1a34
commit
436969904c
1 changed files with 6 additions and 2 deletions
|
@ -832,11 +832,15 @@ (define-public vigra
|
|||
`(#:test-target "check"
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
;; See https://github.com/ukoethe/vigra/issues/432
|
||||
(add-after 'unpack 'disable-broken-test
|
||||
(add-after 'unpack 'disable-broken-tests
|
||||
(lambda _
|
||||
;; See https://github.com/ukoethe/vigra/issues/432
|
||||
(substitute* "test/fourier/CMakeLists.txt"
|
||||
(("VIGRA_ADD_TEST.*") ""))
|
||||
;; This test fails with Numpy 1.15:
|
||||
;; <https://github.com/ukoethe/vigra/issues/436>.
|
||||
(substitute* "vigranumpy/test/CMakeLists.txt"
|
||||
(("test1\\.py") ""))
|
||||
#t)))
|
||||
#:configure-flags
|
||||
(list "-Wno-dev" ; suppress developer mode with lots of warnings
|
||||
|
|
Loading…
Reference in a new issue