lbraun pushed a commit to branch wip-python-pep517
in repository guix.
commit 73e8027bf347ef50dca854d1198bb07b4c9d9d65
Author: Lars-Dominik Braun <[email protected]>
AuthorDate: Sun Jan 2 11:29:23 2022 +0100
gnu: python-webob: Disable tests.
* gnu/packages/python-web.scm (python-webob)[arguments]: Disable tests.
---
gnu/packages/python-web.scm | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/python-web.scm b/gnu/packages/python-web.scm
index fa9d1984c2..6da766fe6b 100644
--- a/gnu/packages/python-web.scm
+++ b/gnu/packages/python-web.scm
@@ -1923,8 +1923,9 @@ your Web app.")
(base32
"026i3z99nr3px75isa9mbnky5i7rffiv4d124h5kxfjjsxz92fma"))))
(build-system python-build-system)
+ (arguments `(#:tests? #f)) ; Thread.isAlive() is not available with Python
>=3.9.
(native-inputs
- (list python-nose))
+ (list python-pytest))
(home-page "https://webob.org/")
(synopsis "WSGI request and response object")
(description