summaryrefslogtreecommitdiff
path: root/gnu/packages
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-10-07 10:26:24 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-10-07 10:26:24 +0100
commitfe25ac0d8a23d1ebab536abac10bb5d7df1c1722 (patch)
tree55e45bfb5fb915a5ad59054e4d8f97f69a023178 /gnu/packages
parent6260e72b5c3cbbc30095a510787a2bbcb7a75109 (diff)
gnu: python-peewee: Simplify tests.
* gnu/packages/databases.scm (python-peewee)[arguments] <test-backend>: Use 'custom. <test-flags>: Move options from custom 'check here. <phases>: Use default 'check. Change-Id: I2e3c6f0cba9913e10f11256ddec9c11da0993d6d
Diffstat (limited to 'gnu/packages')
-rw-r--r--gnu/packages/databases.scm8
1 files changed, 2 insertions, 6 deletions
diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm
index a86a2de3892..28868d8cf4a 100644
--- a/gnu/packages/databases.scm
+++ b/gnu/packages/databases.scm
@@ -3674,12 +3674,8 @@ on another machine, accessed via TCP/IP.")
(build-system pyproject-build-system)
(arguments
(list
- #:phases
- #~(modify-phases %standard-phases
- (replace 'check
- (lambda* (#:key tests? #:allow-other-keys)
- (when tests?
- (invoke "python" "runtests.py")))))))
+ #:test-backend #~'custom
+ #:test-flags #~(list "runtests.py")))
(inputs
(list sqlite))
(native-inputs