summaryrefslogtreecommitdiff
path: root/gnu/packages
diff options
context:
space:
mode:
authorMaxim Cournoyer <maxim@guixotic.coop>2026-04-05 15:17:21 +0900
committerNoƩ Lopez <noelopez@free.fr>2026-08-24 21:32:42 +0200
commit9280fd17bd0028a40f6c47b586ff7d37c5d9d5f1 (patch)
treece2bc8ff5fa2632455a8d33d1f95a1fb4aa049fc /gnu/packages
parentc23f3a611ae0a6262d113c38e956b436c540c2b5 (diff)
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
Diffstat (limited to 'gnu/packages')
-rw-r--r--gnu/packages/python-xyz.scm11
1 files changed, 5 insertions, 6 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index ba087772a34..bd832696e8f 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -18267,12 +18267,11 @@ the @code{sendfile(2)} system call.")
18267 (arguments 18267 (arguments
18268 (list 18268 (list
18269 #:test-flags 18269 #:test-flags
18270 #~(list "-k" "not TestCommandLineParser" 18270 #~(list
18271 #$@(if (target-aarch64?) 18271 "-k" "not TestCommandLineParser"
18272 ;; TimeoutError: timed out 18272 ;; These contains flaky tests.
18273 '((string-append "--deselect=pyftpdlib/test/test_functional.py" 18273 "--deselect=pyftpdlib/test/test_functional.py"
18274 "::TestTimeouts::test_idle_data_timeout2")) 18274 "--deselect=pyftpdlib/test/test_functional_ssl.py")))
18275 '()))))
18276 (native-inputs 18275 (native-inputs
18277 (list python-psutil 18276 (list python-psutil
18278 python-pytest 18277 python-pytest