guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit f403c67791d1da02e010c670fa6dc922dfbdfa26
Author: Nicolas Graves <[email protected]>
AuthorDate: Fri Oct 31 11:51:40 2025 +0100
gnu: python-jsonrpclib-pelix: Fix tests.
* gnu/packages/python-xyz.scm (python-jsonrpclib-pelix)
[arguments]<#:test-backend>: Remove it.
<#:test-flags>: Refresh it.
[native-inputs]: Add python-pytest.
Change-Id: I98db9df4f74ddfa601aa577b899a6e91677e96de
Signed-off-by: Sharlatan Hellseher <[email protected]>
---
gnu/packages/python-xyz.scm | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 0c914c309e..60ad5ed9fd 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -25588,9 +25588,9 @@ offset, or using offset reference
(build-system pyproject-build-system)
(arguments
(list
- #:test-backend #~'unittest
- #:test-flags #~(list "-k" "not test_multicall_success")))
- (native-inputs (list python-setuptools))
+ #:test-flags #~(list "--deselect=\
+tests/test_internal.py::InternalTests::test_multicall_success")))
+ (native-inputs (list python-pytest python-setuptools))
(home-page "https://github.com/tcalmant/jsonrpclib")
(synopsis "JSON-RPC 2.0 client library for Python")
(description