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