mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 05:48:07 -05:00
gnu: praat: Honor #:tests?.
* gnu/packages/language.scm (praat)[arguments]: Check #:tests? in 'check phase.
This commit is contained in:
parent
67d480d4a0
commit
f1badc9406
1 changed files with 4 additions and 3 deletions
|
@ -877,9 +877,10 @@ (define-public praat
|
|||
(copy-file "makefiles/makefile.defs.linux.pulse"
|
||||
"makefile.defs")))
|
||||
(replace 'check
|
||||
(lambda _
|
||||
(invoke "./praat" "--run"
|
||||
"test/runAllTests_batch.praat")))
|
||||
(lambda* (#:key tests? #:allow-other-keys)
|
||||
(when tests?
|
||||
(invoke "./praat" "--run"
|
||||
"test/runAllTests_batch.praat"))))
|
||||
(replace 'install
|
||||
(lambda* (#:key outputs #:allow-other-keys)
|
||||
(let* ((out (assoc-ref outputs "out"))
|
||||
|
|
Loading…
Reference in a new issue