gnu: python-anyio: Disable test on aarch64-linux.

* gnu/packages/python-xyz.scm (python-anyio):[arguments]: Conditionally
disable one additional test.

Change-Id: I5ebec446773355eda60ed3096cd05b179cfdcbaf
This commit is contained in:
Ricardo Wurmus 2025-02-23 09:00:37 +01:00
parent 4317534b9a
commit 5030292dba
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -32135,6 +32135,11 @@ standard error channel (stderr) in your program.")
(string-append
"not test_is_block_device"
,@(cond
((target-aarch64?)
'(" and not test_keyboardinterrupt_during_test"))
(#t '()))
;; These fail because of network (or specifically IPv6
;; network) access (see:
;; https://github.com/agronholm/anyio/issues/417).