gnu: zziplib: Don't run failing tests.
* gnu/packages/compression.scm (zziplib)[arguments]: Set <#:test-target>.
This commit is contained in:
parent
d0a52e65b5
commit
b0dc2454cc
|
@ -1588,7 +1588,12 @@ recreates the stored directory structure by default.")
|
||||||
(lambda _
|
(lambda _
|
||||||
(for-each make-file-writable
|
(for-each make-file-writable
|
||||||
(find-files "test" #:directories? #t))
|
(find-files "test" #:directories? #t))
|
||||||
#t)))))
|
#t)))
|
||||||
|
|
||||||
|
;; XXX: The default test target attempts to download external resources and
|
||||||
|
;; fails without error: <https://github.com/gdraheim/zziplib/issues/53>.
|
||||||
|
;; To prevent confusing log messages, just run a simple zip test that works.
|
||||||
|
#:test-target "check-readme"))
|
||||||
(inputs
|
(inputs
|
||||||
`(("zlib" ,zlib)))
|
`(("zlib" ,zlib)))
|
||||||
(native-inputs `(("perl" ,perl) ; for the documentation
|
(native-inputs `(("perl" ,perl) ; for the documentation
|
||||||
|
|
Loading…
Reference in New Issue