summaryrefslogtreecommitdiff
path: root/gnu/packages/python-xyz.scm
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2025-12-20 19:11:16 +0100
committerAndreas Enge <andreas@enge.fr>2026-02-07 12:28:29 +0100
commitd033fb7212fd761242e91a5fa65b85a30c00e827 (patch)
tree2dbc3d762d135810ee5a7a3668f5a4efa13cd399 /gnu/packages/python-xyz.scm
parent744a1e07767ebaf7d37a5c4457fbdd029daeada7 (diff)
gnu: python-phpserialize: Fix tests.
* gnu/packages/python-xyz.scm (python-phpserialize) [arguments]: Remove <#:test-backend>, update <#:test-flags>. [native-inputs]: Add python-pytest. Change-Id: I72536b16f56ad7e9050828f2c77d70abf16ce639 Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r--gnu/packages/python-xyz.scm5
1 files changed, 2 insertions, 3 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 48431f7c8f3..d5eeacd96b1 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -34018,10 +34018,9 @@ to:
(build-system pyproject-build-system)
(arguments
(list
- #:test-backend #~'unittest
;; XXX: Unclear why this test fails.
- #:test-flags #~(list "-k" "not test_dumps_dict")))
- (native-inputs (list python-setuptools))
+ #:test-flags #~(list "-k" "not test_dumps_dict" "tests.py")))
+ (native-inputs (list python-pytest python-setuptools))
(home-page "https://github.com/mitsuhiko/phpserialize")
(synopsis "Python port of the serialize and unserialize functions of PHP")
(description