me
/
guix
Archived
1
0
Fork 0

gnu: python-anyio: Avoid failing tests.

* gnu/packages/python-xyz.scm (python-anyio)[arguments]: Disable asyncio
plugin, and explicitly disable network tests.
master
Ricardo Wurmus 2021-08-31 22:54:14 +02:00
parent 73995969b1
commit c4f500d032
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 3 additions and 1 deletions

View File

@ -23066,7 +23066,9 @@ standard error channel (stderr) in your program.")
(lambda* (#:key inputs outputs tests? #:allow-other-keys) (lambda* (#:key inputs outputs tests? #:allow-other-keys)
(when tests? (when tests?
(add-installed-pythonpath inputs outputs) (add-installed-pythonpath inputs outputs)
(invoke "pytest" "-vv" "-k" (invoke "pytest" "-vv" "-p" "no:asyncio"
"-m" "not network"
"-k"
(string-append (string-append
"not test_is_block_device" "not test_is_block_device"