mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-04 18:07:24 +01:00
gnu: python-tornado-6: Honor tests flag.
* gnu/packages/python-web.scm (python-tornado-6)[arguments]: Adjust custom 'check phase to honor the #:tests? flag.
This commit is contained in:
parent
908b680a5f
commit
aba4cdc87f
1 changed files with 3 additions and 3 deletions
|
@ -2073,9 +2073,9 @@ (define-public python-tornado-6
|
|||
'(#:phases
|
||||
(modify-phases %standard-phases
|
||||
(replace 'check
|
||||
(lambda _
|
||||
(invoke "python" "-m" "tornado.test.runtests")
|
||||
#t)))))
|
||||
(lambda* (#:key tests? #:allow-other-keys)
|
||||
(when tests?
|
||||
(invoke "python" "-m" "tornado.test.runtests")))))))
|
||||
(native-inputs
|
||||
(list python-certifi))
|
||||
(home-page "https://www.tornadoweb.org/")
|
||||
|
|
Loading…
Reference in a new issue