File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change 11// Copyright 2022 The Kubernetes Authors.
22// SPDX-License-Identifier: Apache-2.0
33
4+ // skip all tests on Windows
5+ //go:build !windows
6+ // +build !windows
7+
48package localizer_test
59
610import (
@@ -183,7 +187,7 @@ spec:
183187 ports:
184188 - protocol: TCP
185189 port: 80
186- targetPort: 8080
190+ targetPort: 8080
187191`
188192
189193 remoteHPA = `apiVersion: autoscaling/v2
Original file line number Diff line number Diff line change @@ -8,9 +8,12 @@ import (
88
99 "github.com/stretchr/testify/require"
1010 "sigs.k8s.io/kustomize/api/types"
11+ "sigs.k8s.io/kustomize/kyaml/testutil"
1112)
1213
1314func TestAsHelmArgs (t * testing.T ) {
15+ // Skip test on Windows due to all scenarios using Unix-style paths
16+ testutil .SkipWindows (t )
1417 t .Run ("use generate-name" , func (t * testing.T ) {
1518 p := types.HelmChart {
1619 Name : "chart-name" ,
You can’t perform that action at this time.
0 commit comments