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
commitd95da9f8c404bea8af84360192fac3f972224b2b (patch)
tree84f935f5b4bb670c8a442e01d54397de3ecfe5ea /Makefile.example
parent658d91d6162886e792a525ce982dfbcf975be1a4 (diff)
downloadIshtar-d95da9f8c404bea8af84360192fac3f972224b2b.tar.bz2
Ishtar-d95da9f8c404bea8af84360192fac3f972224b2b.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