From aef533e0cea7f64f0bba8fdd71aab71adc695823 Mon Sep 17 00:00:00 2001 From: Kjeld Schouten Date: Mon, 26 Feb 2024 20:44:04 +0100 Subject: [PATCH] try another way to ensure unittests are done --- .github/workflows/common_library_tests.yaml | 2 +- library/common-test/unit-values.yaml | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) create mode 100644 library/common-test/unit-values.yaml diff --git a/.github/workflows/common_library_tests.yaml b/.github/workflows/common_library_tests.yaml index d485e938..c6becbb8 100644 --- a/.github/workflows/common_library_tests.yaml +++ b/.github/workflows/common_library_tests.yaml @@ -92,7 +92,7 @@ jobs: # Run tests cd library/common-test/ helm dependency update - helm unittest -f "tests/**/*.yaml" . --set crd.verify.enabled=false + helm unittest -f "tests/**/*.yaml" . -v ./unit-values.yaml install: needs: diff --git a/library/common-test/unit-values.yaml b/library/common-test/unit-values.yaml new file mode 100644 index 00000000..332c9c12 --- /dev/null +++ b/library/common-test/unit-values.yaml @@ -0,0 +1,3 @@ +crd: + verify: + enabled: false \ No newline at end of file