guix_mirror_bot pushed a commit to branch python-team
in repository guix.
commit e6be7ef359e380a87a8fb1faaac541b62ccbd612
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Sat Nov 1 09:43:40 2025 +0000
gnu: python-paste: Fix tests.
* gnu/packages/python-web.scm (python-paste)[arguments] <test-flags>:
Skip one test.
[native-inputs]: Remove python-wheel.
Change-Id: Ic250a1f5ddde89580052b414b1ea772199d43ca7
---
gnu/packages/python-web.scm | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index 00666e9847..c507459402 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -8494,10 +8494,12 @@ package from WTForms. The package has been renamed to
(base32
"0jjyl39r5ncx98rwi855x71qrwvwm59idgn7q0c7m2jyb8314g8w"))))
(build-system pyproject-build-system)
+ (arguments
+ ;; AssertionError: No errors should be written
+ (list #:test-flags #~(list "--deselect=tests/test_cgiapp.py::test_form")))
(native-inputs
(list python-pytest
- python-setuptools
- python-wheel))
+ python-setuptools))
(home-page "https://pythonpaste.readthedocs.io/")
(synopsis "Python web development tools, focusing on WSGI")
(description