Add CRI-O to TestStartStop

pull/3536/head
Thomas Stromberg 2019-01-16 15:13:20 -08:00
parent 9b45920503
commit f2c7860eab
1 changed files with 6 additions and 1 deletions

View File

@ -39,13 +39,18 @@ func TestStartStop(t *testing.T) {
runtime: "",
},
{
name: "start stop with containerd runtime",
name: "containerd",
runtime: constants.ContainerdRuntime,
},
{
name: "crio",
runtime: constants.CrioRuntime,
},
}
for _, test := range tests {
t.Run(test.name, func(t *testing.T) {
T.Logf("Testing %q runtime ...", test.name)
runner := NewMinikubeRunner(t)
if test.runtime != "" && usingNoneDriver(runner) {
t.Skipf("skipping, can't use %s with none driver", test.runtime)