Only run TestDockerFlags with docker container runtime
This test is failing for contaienrd tests, but it doesn't make sense to run it with anything but docker. Adding in a skip.pull/10226/head
parent
1fe7615e9e
commit
aeb45368d7
|
@ -30,6 +30,9 @@ func TestDockerFlags(t *testing.T) {
|
||||||
if NoneDriver() {
|
if NoneDriver() {
|
||||||
t.Skip("skipping: none driver does not support ssh or bundle docker")
|
t.Skip("skipping: none driver does not support ssh or bundle docker")
|
||||||
}
|
}
|
||||||
|
if ContainerRuntime() != "docker" {
|
||||||
|
t.Skipf("skipping: only runs with docker container runtime, currently testing %s", ContainerRuntime())
|
||||||
|
}
|
||||||
MaybeParallel(t)
|
MaybeParallel(t)
|
||||||
|
|
||||||
profile := UniqueProfileName("docker-flags")
|
profile := UniqueProfileName("docker-flags")
|
||||||
|
|
Loading…
Reference in New Issue