Archived
1
0
Fork 0

gnu: python-keyring: Make tests skippable.

* gnu/packages/python-crypto.scm (python-keyring)[arguments]: In custom
'check phase only run tests when tests? is #true.
This commit is contained in:
Efraim Flashner 2021-02-14 14:19:21 +02:00
parent d9784b1a63
commit f7c966ae02
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -382,8 +382,10 @@ do what is needed for client/server Kerberos authentication based on
`(#:phases `(#:phases
(modify-phases %standard-phases (modify-phases %standard-phases
(replace 'check (replace 'check
(lambda _ (lambda* (#:key tests? #:allow-other-keys)
(invoke "pytest")))))) (when tests?
(invoke "pytest"))
#t)))))
(native-inputs (native-inputs
`(("python-toml" ,python-toml) `(("python-toml" ,python-toml)
("python-pytest" ,python-pytest) ("python-pytest" ,python-pytest)