efraim pushed a commit to branch master
in repository guix.

commit af706726e7641cba9dbac82ce972f85d6b46fd11
Author: Efraim Flashner <efr...@flashner.co.il>
AuthorDate: Tue Mar 4 21:28:44 2025 +0200

    gnu: python-anyio: Skip another test on riscv64-linux.
    
    * gnu/packages/python-xyz.scm (python-anyio)[arguments]: When building
    for riscv64-linux skip another test.
    
    Change-Id: I2fde90e3c615cdc231a67ae8fba4bab42577618b
---
 gnu/packages/python-xyz.scm | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 268510f3e2..02f619a790 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -32233,7 +32233,8 @@ standard error channel (stderr) in your program.")
                  "not test_is_block_device"
 
                  ,@(cond
-                    ((target-aarch64?)
+                    ((or (target-aarch64?)
+                         (target-riscv64?))
                      '(" and not test_keyboardinterrupt_during_test"))
                     (#t '()))
 

Reply via email to