Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tests/integration/factories/daemons/ssh/test_salt_ssh.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@


@pytest.fixture(scope="module")
@pytest.mark.skip_if_binaries_missing("sshd", "ssh-keygen")
def sshd(salt_factories):
# Set StrictModes to no because our config directory lives in /tmp and those permissions
# are not acceptable by sshd strict paranoia.
Expand Down Expand Up @@ -54,6 +53,7 @@ def salt_ssh_cli(sshd, salt_factories, master):


@pytest.mark.skip_on_windows
@pytest.mark.skip_if_binaries_missing("ssh", "sshd", "ssh-keygen")
def test_salt_ssh(salt_ssh_cli):
ret = salt_ssh_cli.run("test.echo", "It Works!", minion_tgt="localhost")
assert ret.returncode == 0
Expand Down
2 changes: 1 addition & 1 deletion tests/integration/factories/daemons/sshd/test_sshd.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def test_sshd(sshd):


@pytest.mark.skip_on_windows
@pytest.mark.skip_if_binaries_missing("ssh")
@pytest.mark.skip_if_binaries_missing("ssh", "sshd", "ssh-keygen")
def test_connect(sshd, known_hosts_file):
ssh = shutil.which("ssh")
assert ssh is not None
Expand Down