From 38af4c04eff1eff93f13fa337828b67707ec027b Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Sun, 1 Mar 2026 21:24:42 +0000 Subject: [PATCH] gnu: python-roman: Fix tests. * gnu/packages/python-xyz.scm (python-roman)[arguments]: Add unitest discovery option in "src" directory. Change-Id: I3e14d0a0bf6f5e50ec5755d4f1846123ca34e877 --- gnu/packages/python-xyz.scm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 84975e632a0..7a7a131b5d1 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -8930,7 +8930,8 @@ cutting and pasting that code over and over.") (build-system pyproject-build-system) (arguments (list - #:test-backend #~'unittest)) + #:test-backend #~'unittest + #:test-flags #~(list "discover" "-s" "src"))) (native-inputs (list python-setuptools)) (home-page "https://github.com/zopefoundation/roman") (synopsis "Integer to Roman numerals converter")