me
/
guix
Archived
1
0
Fork 0

gnu: skribilo: Disable tests.

* gnu/packages/skribilo.scm (skribilo)[arguments]: Pass #:tests? #f.
master
Ludovic Courtès 2021-09-29 22:41:43 +02:00
parent da8be73d5b
commit f17517d6c8
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 7 additions and 2 deletions

View File

@ -1,5 +1,5 @@
;;; GNU Guix --- Functional package management for GNU ;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2013, 2014, 2015, 2016, 2017, 2018, 2020 Ludovic Courtès <ludo@gnu.org> ;;; Copyright © 2013, 2014, 2015, 2016, 2017, 2018, 2020, 2021 Ludovic Courtès <ludo@gnu.org>
;;; ;;;
;;; This file is part of GNU Guix. ;;; This file is part of GNU Guix.
;;; ;;;
@ -65,7 +65,12 @@
" -c")))) " -c"))))
#t))) #t)))
#:parallel-build? #f)) #:parallel-build? #f
;; XXX: Temporarily disable tests because they rely on
;; 'test-runner-current' *not* returning #f after 'test-end', which is
;; no longer the case in Guile >= 3.0.6. This is fixed upstream.
#:tests? #f))
(native-inputs `(("pkg-config" ,pkg-config))) (native-inputs `(("pkg-config" ,pkg-config)))