From 6bd672a756129706010fabfea2ed183eaa80a1e2 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Mon, 11 Nov 2019 02:14:00 -0400 Subject: [PATCH] Add target to run all tests in debug mode Signed-off-by: Roberto Rosario --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile b/Makefile index 133f74b056..e15c6beb08 100644 --- a/Makefile +++ b/Makefile @@ -33,6 +33,10 @@ test-all: ## Run all tests. test-all: clean-pyc ./manage.py test --mayan-apps --settings=mayan.settings.testing.development --nomigrations $(ARGUMENTS) +test-all-debug: ## Run all tests in debug mode. +test-all-debug: clean-pyc + ./manage.py test --mayan-apps --settings=mayan.settings.testing.development --nomigrations --debug-mode $(ARGUMENTS) + test-launch-postgres: @docker rm -f test-postgres || true @docker volume rm test-postgres || true