Run CNI tests on containerd

pull/10261/head
Priya Wadhwa 2021-01-25 14:51:35 -08:00
parent a4ee1e0791
commit 48be26ba96
1 changed files with 3 additions and 10 deletions

View File

@ -34,7 +34,9 @@ import (
func TestNetworkPlugins(t *testing.T) {
MaybeParallel(t)
validations(t)
if NoneDriver() {
t.Skip("skipping since test for none driver")
}
t.Run("group", func(t *testing.T) {
tests := []struct {
@ -204,12 +206,3 @@ func TestNetworkPlugins(t *testing.T) {
}
})
}
func validations(t *testing.T) {
if NoneDriver() {
t.Skip("skipping since test for none driver")
}
if ContainerdContainerRuntime() {
t.Skip("skipping as this test currently times out on containerd")
}
}