From da8d576cc0aca1d4a2aabe519bd85df70cb604b5 Mon Sep 17 00:00:00 2001 From: Nicolas Graves Date: Fri, 31 Oct 2025 11:51:40 +0100 Subject: [PATCH] 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 --- 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 891cf139a4a..bf16f3c3a75 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -25547,9 +25547,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