From a551625933487ce74037c9ab37b1fae4e847f52f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=94=A1=E7=A7=80=E5=90=89?= <84045975+thc1006@users.noreply.github.com> Date: Thu, 17 Jul 2025 05:31:04 +0800 Subject: [PATCH] Update Makefile MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: 蔡秀吉 <84045975+thc1006@users.noreply.github.com> --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index e867faceb..2606e6ae8 100644 --- a/Makefile +++ b/Makefile @@ -21,7 +21,6 @@ ACCEPTANCE_RUN_TESTS=. PKG := ./... TAGS := TESTS := . -TESTARGS := -shuffle=on -count=3 TESTFLAGS := LDFLAGS := -w -s GOFLAGS := @@ -110,7 +109,8 @@ test-unit: @echo "==> Running unit test(s) with ldflags <==" # Test to check the deprecation warnings on Kubernetes templates created by `helm create` against the current Kubernetes # version. Note: The version details are set in var LDFLAGS. To avoid the ldflags impact on other unit tests that are -# based on older versions, this is run separately. When run without the ldflags in the unit test (above) or coverage +# based on older versions, this is run separately. +# When run without the ldflags in the unit test (above) or coverage # test, it still passes with a false-positive result as the resources shouldn’t be deprecated in the older Kubernetes # version if it only starts failing with the latest. go test $(GOFLAGS) -run ^TestHelmCreateChart_CheckDeprecatedWarnings$$ ./pkg/lint/ $(TESTFLAGS) -ldflags '$(LDFLAGS)'