guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit 9111585a74df84463ab27e61e3fac9043c1c9701
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Sun Mar 1 21:24:42 2026 +0000
gnu: python-roman: Fix tests.
* gnu/packages/python-xyz.scm (python-roman)[arguments]<test-flags>:
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 0351b09ab5..59dde3c874 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -8498,7 +8498,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")