Merge pull request #1493 from aluzzardi/test-disable-ssh

test: disable tests relying on SSH
This commit is contained in:
Gerhard Lazu
2022-01-25 11:15:51 +00:00
committed by GitHub

View File

@@ -123,14 +123,20 @@ setup() {
}
@test "docker command: ssh" {
skip "FIXME: ssh tests"
dagger -e docker-command-ssh up
}
@test "docker command: ssh with key passphrase" {
skip "FIXME: ssh tests"
dagger -e docker-command-ssh-key-passphrase up
}
@test "docker command: ssh with wrong key passphrase" {
skip "FIXME: ssh tests"
run dagger -e docker-command-ssh-wrong-key-passphrase up
assert_failure
}
@@ -140,10 +146,14 @@ setup() {
}
@test "docker compose" {
skip "FIXME: ssh tests"
dagger -e docker-compose up
}
@test "docker run: ssh" {
skip "FIXME: ssh tests"
dagger -e docker-run-ssh up
}