gnu: gloo: Honor #:tests? in 'check' phase.
* gnu/packages/machine-learning.scm (gloo)[arguments]: In 'check' phase, honor #:tests?.
This commit is contained in:
parent
36f7e1d783
commit
c83d7d68f3
1 changed files with 3 additions and 3 deletions
|
@ -2462,9 +2462,9 @@ that:
|
||||||
#:phases
|
#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(replace 'check
|
(replace 'check
|
||||||
(lambda _
|
(lambda* (#:key tests? #:allow-other-keys)
|
||||||
(invoke "make" "gloo_test")
|
(when tests?
|
||||||
#t)))))
|
(invoke "make" "gloo_test")))))))
|
||||||
(synopsis "Collective communications library")
|
(synopsis "Collective communications library")
|
||||||
(description
|
(description
|
||||||
"Gloo is a collective communications library. It comes with a
|
"Gloo is a collective communications library. It comes with a
|
||||||
|
|
Reference in a new issue