me
/
guix
Archived
1
0
Fork 0

gnu: python-sqlalchemy: Respect #:tests?.

* gnu/packages/databases.scm (python-sqlalchemy)[argument]:
Respect the #:tests? keyword in the custom 'check phase.
master
Tobias Geerinckx-Rice 2021-11-03 15:08:18 +01:00
parent ccb2fabee0
commit 23489e69f2
No known key found for this signature in database
GPG Key ID: 0DB0FF884F556D79
1 changed files with 3 additions and 1 deletions

View File

@ -2995,7 +2995,9 @@ Database API 2.0T.")
`(#:phases
(modify-phases %standard-phases
(replace 'check
(lambda _ (invoke "py.test"))))))
(lambda* (#:key tests? #:allow-other-keys)
(when tests?
(invoke "py.test")))))))
(home-page "https://www.sqlalchemy.org")
(synopsis "Database abstraction library")
(description