Skip to content

Commit 37b9eaf

Browse files
committed
fix: Pass CI_MODE to local-test-dev script
The Makefile now passes --ci flag to local-dev-test.sh when CI_MODE=true, so known TODOs are treated as tracked items rather than failures.
1 parent fb6acb1 commit 37b9eaf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -319,7 +319,7 @@ makefile-health: check-minikube check-kubectl ## Run comprehensive Makefile heal
319319

320320
local-test-dev: ## Run local developer experience tests
321321
@echo "$(COLOR_BLUE)$(COLOR_RESET) Running local developer experience tests..."
322-
@./tests/local-dev-test.sh
322+
@./tests/local-dev-test.sh $(if $(filter true,$(CI_MODE)),--ci,)
323323

324324
local-test-quick: check-kubectl check-minikube ## Quick smoke test of local environment
325325
@echo "$(COLOR_BOLD)🧪 Quick Smoke Test$(COLOR_RESET)"

0 commit comments

Comments
 (0)