diff options
author | Roman Scherer <roman@burningswell.com> | 2024-12-08 18:31:42 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-12-09 20:19:18 +0000 |
commit | ec1a67d4ff7435fdf50de35c3f57d2f60a9cccf9 (patch) | |
tree | d80a1328f9d68bd7d594906cbd6ada24327c6d23 | |
parent | da3c8a963f83c044568d99921480259eaa26a923 (diff) | |
download | guix-ec1a67d4ff7435fdf50de35c3f57d2f60a9cccf9.tar.gz guix-ec1a67d4ff7435fdf50de35c3f57d2f60a9cccf9.zip |
gnu: python-asyncssh: Disable failing tests on aarch64.
* gnu/packages/ssh.scm (python-asyncssh): Disable failing tests on aarch64.
Change-Id: I9f3a746bdf820c1d357fd655f1ed1ff197327856
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
-rw-r--r-- | gnu/packages/ssh.scm | 19 |
1 files changed, 13 insertions, 6 deletions
diff --git a/gnu/packages/ssh.scm b/gnu/packages/ssh.scm index 8d7c975d35..9b42bdc937 100644 --- a/gnu/packages/ssh.scm +++ b/gnu/packages/ssh.scm @@ -819,12 +819,19 @@ shell services and remote host selection.") (list #:test-flags #~(list "-k" (string-join - ;; TODO Test fails for unknown reason - (list "not test_confirm" - ;; Tests fail with: asyncssh.misc.ConnectionLost: - ;; Connection lost - "test_get_server_host_key_proxy" - "test_connect_reverse_proxy") + (list + ;; TODO Test fails for unknown reason + "not test_confirm" + #$@(if (target-aarch64?) + (list + ;; Tests fail with: asyncssh.misc.ConnectionLost: + ;; Connection lost + "test_connect_non_tcp_sock" + "test_connect_reverse_proxy" + "test_get_server_auth_methods_no_sockn" + "test_get_server_auth_methods_no_sockname" + "test_get_server_host_key_proxy") + '())) " and not " )) #:phases #~(modify-phases %standard-phases |