From fce94f38ce830ab8b7db6bd21b530041d41fe1c1 Mon Sep 17 00:00:00 2001 From: lebaudantoine Date: Tue, 17 Mar 2026 22:09:47 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=A7=91=E2=80=8D=F0=9F=92=BB(summary)=20ad?= =?UTF-8?q?d=20make=20command=20to=20run=20summary=20test=20suite?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Introduce a dedicated make target to execute tests for the summary component of the stack. --- Makefile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Makefile b/Makefile index b044a718..5c9504d5 100644 --- a/Makefile +++ b/Makefile @@ -191,6 +191,7 @@ lint-pylint: ## lint back-end python sources with pylint only on changed files f test: ## run project tests @$(MAKE) test-back-parallel + @$(MAKE) test-summary .PHONY: test test-back: ## run back-end tests @@ -203,6 +204,11 @@ test-back-parallel: ## run all back-end tests in parallel bin/pytest -n auto $${args:-${1}} .PHONY: test-back-parallel +test-summary: ## run summary tests + @args="$(filter-out $@,$(MAKECMDGOALS))" && \ + bin/pytest-summary $${args:-${1}} +.PHONY: test-summary + makemigrations: ## run django makemigrations for the Meet project. @echo "$(BOLD)Running makemigrations$(RESET)" @$(COMPOSE) up -d postgresql