gnu: hypercorn: Honor #:tests? in 'check' phase.

* gnu/packages/python-web.scm (hypercorn)[arguments]: Honor #:tests? in
'check' phase.

Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
Vinicius Monego 2021-10-30 17:30:48 +00:00 committed by Efraim Flashner
parent 556a3ac3af
commit a6dc9f783f
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351

View File

@ -1650,9 +1650,10 @@ RFC6455, regardless of your programming paradigm.")
`(#:phases
(modify-phases %standard-phases
(replace 'check
(lambda* (#:key inputs outputs #:allow-other-keys)
(add-installed-pythonpath inputs outputs)
(invoke "pytest" "-vv"))))))
(lambda* (#:key inputs outputs tests? #:allow-other-keys)
(when tests?
(add-installed-pythonpath inputs outputs)
(invoke "python" "-m" "pytest")))))))
;; Propagate because Hypercorn also exposes functionality over a module.
(propagated-inputs
`(("python-h11" ,python-h11)