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