summaryrefslogtreecommitdiff
path: root/Makefile.example
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile.example')
-rw-r--r--Makefile.example4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.example b/Makefile.example
index fc072a4fd..e128e3015 100644
--- a/Makefile.example
+++ b/Makefile.example
@@ -103,10 +103,10 @@ test_ui: clean ## launch tests for UI
soft_test_ui: clean ## launch soft tests for UI
cd $(project); $(PYTHON) manage.py test -k --tag ui $(apps)
-build_gitlab: clean collectstatic ## specific build for gitlab
+build_gitlab: clean collectstatic makemessages ## specific build for gitlab
cd $(project); $(PYTHON) ./manage.py migrate
-test_gitlab: clean collectstatic ## specific test for gitlab
+test_gitlab: clean collectstatic makemessages ## specific test for gitlab
cd $(project); $(PYTHON) manage.py test --exclude-tag gis --exclude-tag ui --exclude-tag libreoffice $(apps)
soft_test_gitlab: build_gitlab