From ed5b7d17b1dd91ca2c7f55c33f4412909d73b11a Mon Sep 17 00:00:00 2001 From: Connor Peshek Date: Wed, 27 May 2026 06:13:09 -0500 Subject: [PATCH] root: make tests run when running make all (#22186) Root: make tests run when running make all --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index ccfb910dff..a32d889a82 100644 --- a/Makefile +++ b/Makefile @@ -73,7 +73,7 @@ rust-test: ## Run the Rust tests $(CARGO) nextest run --workspace test: ## Run the server tests and produce a coverage report (locally) - $(UV) run coverage run manage.py test --keepdb $(or $(filter-out $@,$(MAKECMDGOALS)),authentik) + $(UV) run coverage run manage.py test --keepdb $(or $(filter-out $@ all,$(MAKECMDGOALS)),authentik) $(UV) run coverage combine $(UV) run coverage html $(UV) run coverage report