mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-05 02:16:31 +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 @@ connection to each user.")
|
||||||
'(#:phases
|
'(#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(replace 'check
|
(replace 'check
|
||||||
(lambda _
|
(lambda* (#:key tests? #:allow-other-keys)
|
||||||
(invoke "python" "-m" "tornado.test.runtests")
|
(when tests?
|
||||||
#t)))))
|
(invoke "python" "-m" "tornado.test.runtests")))))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list python-certifi))
|
(list python-certifi))
|
||||||
(home-page "https://www.tornadoweb.org/")
|
(home-page "https://www.tornadoweb.org/")
|
||||||
|
|
Loading…
Add table
Reference in a new issue