summaryrefslogtreecommitdiff
path: root/gnu/packages/python-xyz.scm
diff options
context:
space:
mode:
authorMaxim Cournoyer <maxim@guixotic.coop>2026-08-02 13:39:39 +0900
committerNoƩ Lopez <noelopez@free.fr>2026-08-25 01:15:40 +0200
commit78fcf50be32075844446aeab5205e45292cda9e6 (patch)
treebfdd52f73ea691a0d11a43612815ab4a6c93a4d1 /gnu/packages/python-xyz.scm
parent26b0ae1ba0a69dbfacf2da758a64fdba28650dd6 (diff)
gnu: python-pexpect: Disable socket tests, susceptible to hang.
* gnu/packages/python-xyz.scm (python-pexpect) [#:test-flags]: Add --ignore=tests/test_socket.py and --ignore=tests/test_socket_fd.py.
Diffstat (limited to 'gnu/packages/python-xyz.scm')
-rw-r--r--gnu/packages/python-xyz.scm8
1 files changed, 6 insertions, 2 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index bd179c3e87d..8fc373c81ee 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -15537,7 +15537,11 @@ wraps Python's standard library threading and multiprocessing objects.")
15537 (arguments 15537 (arguments
15538 (list 15538 (list
15539 #:test-flags 15539 #:test-flags
15540 #~(list "-k" (string-join 15540 ;; The socket tests can hang (most often, but not only, when run in
15541 ;; parallel, see: <https://github.com/pexpect/pexpect/issues/809>)
15542 #~(list "--ignore=tests/test_socket.py"
15543 "--ignore=tests/test_socket_fd.py"
15544 "-k" (string-join
15541 (list 15545 (list
15542 ;; Disable failing test, see 15546 ;; Disable failing test, see
15543 ;; <https://github.com/pexpect/pexpect/issues/568>. 15547 ;; <https://github.com/pexpect/pexpect/issues/568>.
@@ -15569,7 +15573,7 @@ wraps Python's standard library threading and multiprocessing objects.")
15569 ;; and unlikely to change. 15573 ;; and unlikely to change.
15570 (("/bin'") "/dev'"))))))) 15574 (("/bin'") "/dev'")))))))
15571 (native-inputs 15575 (native-inputs
15572 (list bash ;full Bash for 'test_replwrap.py' 15576 (list bash ;full Bash for 'test_replwrap.py'
15573 man-db 15577 man-db
15574 python-pytest 15578 python-pytest
15575 python-setuptools 15579 python-setuptools