gnu: taxtastic: Run tests conditionally.
* gnu/packages/bioinformatics.scm (taxtastic)[arguments]: Respect TESTS? option.master
parent
58fecfd18e
commit
00ba04020e
|
@ -7466,7 +7466,9 @@ Cuffdiff or Ballgown programs.")
|
||||||
(replace 'check
|
(replace 'check
|
||||||
;; Note, this fails to run with "-v" as it tries to write to a
|
;; Note, this fails to run with "-v" as it tries to write to a
|
||||||
;; closed output stream.
|
;; closed output stream.
|
||||||
(lambda _ (invoke "python" "-m" "unittest") #t)))))
|
(lambda* (#:key tests? #:allow-other-keys)
|
||||||
|
(when tests?
|
||||||
|
(invoke "python" "-m" "unittest")))))))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
`(("python-sqlalchemy" ,python-sqlalchemy)
|
`(("python-sqlalchemy" ,python-sqlalchemy)
|
||||||
("python-decorator" ,python-decorator)
|
("python-decorator" ,python-decorator)
|
||||||
|
|
Reference in New Issue