summaryrefslogtreecommitdiff
path: root/Makefile.example
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile.example')
-rw-r--r--Makefile.example6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile.example b/Makefile.example
index a6a4d523d..e1f0141bb 100644
--- a/Makefile.example
+++ b/Makefile.example
@@ -51,9 +51,9 @@ test_gitlab: clean
# test migrations
cd $(project); $(PYTHON) ./manage.py syncdb --noinput 2> /dev/null > /dev/null
# only necessary on master
- cd $(project); $(PYTHON) ./manage.py migrate ishtar_common 2> /dev/null > /dev/null
- cd $(project); $(PYTHON) ./manage.py migrate archaeological_operations 2> /dev/null > /dev/null
- cd $(project); $(PYTHON) ./manage.py migrate 2> /dev/null > /dev/null
+ cd $(project); $(PYTHON) ./manage.py migrate ishtar_common
+ cd $(project); $(PYTHON) ./manage.py migrate archaeological_operations
+ cd $(project); $(PYTHON) ./manage.py migrate
cd $(project); $(PYTHON) manage.py test $(apps)
pep8: