gnu: python-sqlalchemy: Respect #:tests?.
* gnu/packages/databases.scm (python-sqlalchemy)[argument]: Respect the #:tests? keyword in the custom 'check phase.master
parent
ccb2fabee0
commit
23489e69f2
|
@ -2995,7 +2995,9 @@ Database API 2.0T.")
|
||||||
`(#:phases
|
`(#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(replace 'check
|
(replace 'check
|
||||||
(lambda _ (invoke "py.test"))))))
|
(lambda* (#:key tests? #:allow-other-keys)
|
||||||
|
(when tests?
|
||||||
|
(invoke "py.test")))))))
|
||||||
(home-page "https://www.sqlalchemy.org")
|
(home-page "https://www.sqlalchemy.org")
|
||||||
(synopsis "Database abstraction library")
|
(synopsis "Database abstraction library")
|
||||||
(description
|
(description
|
||||||
|
|
Reference in New Issue