guix_mirror_bot pushed a commit to branch gnome-team
in repository guix.

commit 9280fd17bd0028a40f6c47b586ff7d37c5d9d5f1
Author: Maxim Cournoyer <[email protected]>
AuthorDate: Sun Apr 5 15:17:21 2026 +0900

    gnu: python-pyftpdlib: Harden against flaky test failures.
    
    * gnu/packages/python-xyz.scm (python-pyftpdlib)
    [#:test-flags]: Unconditionally deselect whole test_functional_ssl and
    test_functional test suites.
    
    Change-Id: Icdd50dbe488309d609f73693b69bab2bac39d135
---
 gnu/packages/python-xyz.scm | 11 +++++------
 1 file changed, 5 insertions(+), 6 deletions(-)

diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index ba087772a3..bd832696e8 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -18267,12 +18267,11 @@ the @code{sendfile(2)} system call.")
     (arguments
      (list
       #:test-flags
-      #~(list "-k" "not TestCommandLineParser"
-              #$@(if (target-aarch64?)
-                     ;; TimeoutError: timed out
-                     '((string-append 
"--deselect=pyftpdlib/test/test_functional.py"
-                                      
"::TestTimeouts::test_idle_data_timeout2"))
-                     '()))))
+      #~(list
+         "-k" "not TestCommandLineParser"
+         ;; These contains flaky tests.
+         "--deselect=pyftpdlib/test/test_functional.py"
+         "--deselect=pyftpdlib/test/test_functional_ssl.py")))
     (native-inputs
      (list python-psutil
            python-pytest

Reply via email to