summaryrefslogtreecommitdiff
path: root/Makefile.example
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile.example')
-rw-r--r--Makefile.example3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile.example b/Makefile.example
index 3330f3dc7..1ac950635 100644
--- a/Makefile.example
+++ b/Makefile.example
@@ -87,7 +87,8 @@ build_gitlab: clean collectstatic ## specific build for gitlab
cd $(project); $(PYTHON) ./manage.py migrate
test_gitlab: build_gitlab ##
- cd $(project); $(PYTHON) manage.py test $(apps)
+ cd $(project); $(PYTHON) manage.py test --tag gis $(apps)
+ cd $(project); $(PYTHON) manage.py test --exclude-tag gis $(apps)
soft_test_gitlab: build_gitlab
cd $(project); $(PYTHON) manage.py -k test $(apps)