Exemplo n.º 1
0
def connection_localhost():
    con = SSHConnection("localhost")
    con.connect()
    yield con
    con.disconnect()
Exemplo n.º 2
0
def test_sshmanager_invalid_host_raise():
    con = SSHConnection("nosuchhost.notavailable")
    with pytest.raises(ExecutionError):
        con.connect()
Exemplo n.º 3
0
def connection_localhost_no_cleanup():
    con = SSHConnection("localhost")
    con.connect()
    return con