guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit a76fc8ad7bd00f8d8b92109eb94aad13cd732e09
Author: Nicolas Graves <[email protected]>
AuthorDate: Sat Dec 20 19:11:16 2025 +0100
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 <[email protected]>
---
gnu/packages/python-xyz.scm | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index e0665675bf..8ca6bfb811 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -33870,10 +33870,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