tests: skip test_logged for DockerExec

This commit is contained in:
missytake
2025-08-26 16:18:11 +02:00
parent 00342dd667
commit b070677362

View File

@@ -54,6 +54,8 @@ class TestSSHExecutor:
assert res["A"] or res["AAAA"]
def test_logged(self, sshexec, maildomain, capsys):
if isinstance(sshexec, DockerExec):
pytest.skip("This test only works via SSH")
sshexec.logged(
remote.rdns.perform_initial_checks, kwargs=dict(mail_domain=maildomain)
)