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 184db0b commit a469defCopy full SHA for a469def
api/krusty/localizer/runner_test.go
@@ -1,6 +1,10 @@
1
// Copyright 2022 The Kubernetes Authors.
2
// SPDX-License-Identifier: Apache-2.0
3
4
+// skip all tests on Windows
5
+//go:build !windows
6
+// +build !windows
7
+
8
package localizer_test
9
10
import (
api/types/helmchartargs_test.go
@@ -8,9 +8,12 @@ import (
"github.com/stretchr/testify/require"
"sigs.k8s.io/kustomize/api/types"
11
+ "sigs.k8s.io/kustomize/kyaml/testutil"
12
)
13
14
func TestAsHelmArgs(t *testing.T) {
15
+ // Skip test on Windows due to all scenarios using Unix-style paths
16
+ testutil.SkipWindows(t)
17
t.Run("use generate-name", func(t *testing.T) {
18
p := types.HelmChart{
19
Name: "chart-name",
0 commit comments