summaryrefslogtreecommitdiff
path: root/Makefile.example
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@iggdrasil.net>2022-11-10 01:17:04 +0100
committerÉtienne Loks <etienne.loks@iggdrasil.net>2022-12-12 12:23:19 +0100
commitdc19006e9cbd79188ce174d23cab3209cd4d77c2 (patch)
tree84f935f5b4bb670c8a442e01d54397de3ecfe5ea /Makefile.example
parent3195c94a30e1691fa8465ba5c22c1a177e7ee187 (diff)
downloadIshtar-dc19006e9cbd79188ce174d23cab3209cd4d77c2.tar.bz2
Ishtar-dc19006e9cbd79188ce174d23cab3209cd4d77c2.zip
Gitlab CI - compile messages (needed for a test)
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