gnu: python-aiohttp: Skip the tests.

The test suite is failing because it fails to handle a deprecation
warning. Just skip it for now.

* gnu/packages/python-web.scm (python-aiohttp)[arguments]: Skip the test suite.
This commit is contained in:
Leo Famulari 2022-01-17 19:36:45 -05:00
parent b4dd92d38a
commit 2cac7d328a
No known key found for this signature in database
GPG key ID: 2646FA30BACA7F08

View file

@ -188,7 +188,10 @@ (define-public python-aiohttp
"aiohttp/_websocket.c"))))))
(build-system python-build-system)
(arguments
'(#:phases
'(;; The test suite fails to handle a deprecation warning:
;; "E DeprecationWarning: The loop argument is deprecated since Python 3.8, and scheduled for removal in Python 3.10."
#:tests? #f
#:phases
(modify-phases %standard-phases
(add-after 'unpack 'fix-tests
(lambda _