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 4289a7b commit ab33560Copy full SHA for ab33560
.github/workflows/unit-tests.yaml
@@ -29,3 +29,4 @@ jobs:
29
run: |
30
make test-api
31
make test-internal
32
+ make test-unit
Makefile
@@ -148,6 +148,14 @@ test-internal: fmt vet copywrite ## Run internal/* tests.
148
./internal/pointer \
149
./internal/slice
150
151
+.PHONY: test-unit
152
+test-unit: fmt vet copywrite ## Run internal/controller tests.
153
+ go test ./internal/controller/... \
154
+ -timeout 5m \
155
+ -count 1 \
156
+ -v \
157
+ -run="^Test(DoNotRequeue|RequeueAfter|RequeueOnErr|FormatOutput|FinalizerBehaviors|MatchWildcardName|ValidateTFEVersion)$$"
158
+
159
.PHONY: test-helm
160
test-helm: ## Run Helm chart tests.
161
cd charts/test; go test -timeout 5m -count=1 -v ./...
0 commit comments