From 59fbe2d409d6d3f1686507852ee33867169c6dfe Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Wed, 8 Jun 2016 19:29:45 -0400 Subject: [PATCH] Turn on all warnings when running tests. --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 7645214f2b..783567fbe3 100644 --- a/Makefile +++ b/Makefile @@ -52,10 +52,10 @@ clean-pyc: # Testing test: - ./manage.py test $(MODULE) --settings=mayan.settings.testing --nomigrations + python -Wall ./manage.py test $(MODULE) --settings=mayan.settings.testing --nomigrations test-all: - ./manage.py runtests --settings=mayan.settings.testing --nomigrations + python -Wall ./manage.py runtests --settings=mayan.settings.testing --nomigrations # Documentation