skip tests instead of comment out

This commit is contained in:
Donny Xia
2021-05-06 12:33:17 -07:00
parent 5bb7364967
commit 627118c438

View File

@@ -89,7 +89,8 @@ func skipIfNoDocker(t *testing.T) {
}
}
/*func TestFnContainerGenerator(t *testing.T) {
func TestFnContainerGenerator(t *testing.T) {
t.Skip("wait for #3881")
skipIfNoDocker(t)
// Function plugins should not need the env setup done by MakeEnhancedHarness
@@ -306,6 +307,7 @@ spec:
}
func TestFnContainerTransformer(t *testing.T) {
t.Skip("wait for #3881")
skipIfNoDocker(t)
// Function plugins should not need the env setup done by MakeEnhancedHarness
@@ -403,7 +405,7 @@ spec:
cpu: 200m
memory: 50M
`)
}*/
}
func TestFnContainerTransformerWithConfig(t *testing.T) {
skipIfNoDocker(t)