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:
parent
b4dd92d38a
commit
2cac7d328a
1 changed files with 4 additions and 1 deletions
|
@ -188,7 +188,10 @@ API rules.")
|
||||||
"aiohttp/_websocket.c"))))))
|
"aiohttp/_websocket.c"))))))
|
||||||
(build-system python-build-system)
|
(build-system python-build-system)
|
||||||
(arguments
|
(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
|
(modify-phases %standard-phases
|
||||||
(add-after 'unpack 'fix-tests
|
(add-after 'unpack 'fix-tests
|
||||||
(lambda _
|
(lambda _
|
||||||
|
|
Reference in a new issue