We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 334375a commit 26925f9Copy full SHA for 26925f9
api/internal/plugins/execplugin/execplugin_test.go
@@ -18,6 +18,7 @@ import (
18
"sigs.k8s.io/kustomize/api/resmap"
19
"sigs.k8s.io/kustomize/api/types"
20
"sigs.k8s.io/kustomize/kyaml/filesys"
21
+ "sigs.k8s.io/kustomize/kyaml/testutil"
22
)
23
24
const (
@@ -27,6 +28,8 @@ const (
27
28
29
30
func TestExecPluginConfig(t *testing.T) {
31
+ // Skip this test on Windows.
32
+ testutil.SkipWindows(t)
33
fSys := filesys.MakeFsInMemory()
34
err := fSys.WriteFile("sed-input.txt", []byte(`
35
s/$FOO/foo/g
0 commit comments