From faf6495020214e87e758c86f24038600e6f6d414 Mon Sep 17 00:00:00 2001 From: YuviPanda Date: Fri, 25 Oct 2024 19:12:55 -0700 Subject: [PATCH] Remove -v from test local commands --- tests/test_ssh.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_ssh.py b/tests/test_ssh.py index 013c719..48aab95 100644 --- a/tests/test_ssh.py +++ b/tests/test_ssh.py @@ -55,7 +55,7 @@ def get_ssh_client_options(random_port, token, authorized_keys_path): def test_ssh_command_execution(jupyter_server): cmd = [ - 'ssh', '-v', + 'ssh', ] + [f"-o={o}" for o in get_ssh_client_options(*jupyter_server)] + ['127.0.0.1', 'hostname'] out = subprocess.check_output(cmd).decode().strip() @@ -65,7 +65,7 @@ def test_ssh_command_execution(jupyter_server): def test_ssh_interactive(jupyter_server): cmd = [ - 'ssh', '-v', + 'ssh', ] + [f"-o={o}" for o in get_ssh_client_options(*jupyter_server)] + ['127.0.0.1', 'hostname'] proc = pexpect.spawn(shlex.join(cmd), echo=False)