From 4053c4d73024238fc5fd5e471be30ba3272c69ce Mon Sep 17 00:00:00 2001 From: YuviPanda Date: Fri, 25 Oct 2024 19:24:57 -0700 Subject: [PATCH] Show verbose output from websocat --- tests/test_ssh.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_ssh.py b/tests/test_ssh.py index 75afc01..a92f577 100644 --- a/tests/test_ssh.py +++ b/tests/test_ssh.py @@ -48,7 +48,7 @@ def jupyter_server(random_port): def get_ssh_client_options(random_port, token, authorized_keys_path): return [ - f'ProxyCommand=websocat --binary -H="Authorization: token {token}" asyncstdio: ws://%h:{random_port}/sshd/', + f'ProxyCommand=websocat -v --binary -H="Authorization: token {token}" asyncstdio: ws://%h:{random_port}/sshd/', f'User={getpass.getuser()}', f'IdentityFile={authorized_keys_path}', 'StrictHostKeyChecking=no' # FIXME: Validate this correctly later