mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: taxtastic: Run tests conditionally.
* gnu/packages/bioinformatics.scm (taxtastic)[arguments]: Respect TESTS? option.
This commit is contained in:
parent
58fecfd18e
commit
00ba04020e
1 changed files with 3 additions and 1 deletions
|
@ -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)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue