andreas pushed a commit to branch python-team
in repository guix.

commit 40015f816d3e355d9d22fe13261d10daf2fdcea6
Author: Nicolas Graves <[email protected]>
AuthorDate: Sun Apr 6 14:37:22 2025 +0200

    gnu: python-redis: Ignore i686 failing test.
    
    * gnu/packages/databases.scm (python-redis)
    [arguments]{test-flags}: Ignore i686 failing test.
    
    Change-Id: Ifeb08bbfc8dae70d7fff897603985b8b2e382387
    Co-authored-by: Sharlatan Hellseher <[email protected]>
    Signed-off-by: Sharlatan Hellseher <[email protected]>
---
 gnu/packages/databases.scm | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm
index 3fdee01fc9..cc4b39a1bd 100644
--- a/gnu/packages/databases.scm
+++ b/gnu/packages/databases.scm
@@ -4578,7 +4578,11 @@ reasonable substitute.")
                      "test_tfunction_load_delete"
                      "test_tfunction_list"
                      ;; AssertionError: assert 3 == 2
-                     "test_acl_list")
+                     "test_acl_list"
+                     ;; XXX: This test occasionally fails on i686-linux
+                     #$@(if (target-x86-32?)
+                            '("test_geopos")
+                            '()))
                     " and not "))
       #:phases
       #~(modify-phases %standard-phases

Reply via email to