Skip to content

Commit

Permalink
Remove -v from test local commands
Browse files Browse the repository at this point in the history
  • Loading branch information
yuvipanda committed Oct 26, 2024
1 parent 7f62d8b commit faf6495
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_ssh.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand All @@ -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)
Expand Down

0 comments on commit faf6495

Please sign in to comment.