Skip to content

Commit

Permalink
Merge pull request #10226 from priyawadhwa/test-docker-flags
Browse files Browse the repository at this point in the history
Only run TestDockerFlags with docker container runtime
  • Loading branch information
medyagh authored Jan 23, 2021
2 parents 94a676a + aeb4536 commit d4f8664
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions test/integration/docker_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@ func TestDockerFlags(t *testing.T) {
if NoneDriver() {
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)

profile := UniqueProfileName("docker-flags")
Expand Down

0 comments on commit d4f8664

Please sign in to comment.