summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2025-10-31 11:51:40 +0100
committerAndreas Enge <andreas@enge.fr>2026-02-07 12:28:28 +0100
commit72c177d747e778224594fc7c8bd5dbcc36d54fb9 (patch)
tree8047b0750d9dc73c50c1d5335dfd84959b7f3125 /gnu
parentb2acfd5cfb9033739bc225f188021aaec197644e (diff)
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 <sharlatanus@gmail.com>
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/python-xyz.scm6
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 77fea36fdae..fc4dae56dc8 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -25585,9 +25585,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