diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2016-08-17 20:45:42 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2016-08-17 20:45:42 +0200 |
commit | 70297fc0fc07eba7e06ebee6d64b2570f279185f (patch) | |
tree | c3df2171f7e6735c70cace405b0339e614c79739 | |
parent | 9bc70425c2385efe265cf90d04090cab43959328 (diff) | |
download | Ishtar-70297fc0fc07eba7e06ebee6d64b2570f279185f.tar.bz2 Ishtar-70297fc0fc07eba7e06ebee6d64b2570f279185f.zip |
CI: remove debug instructions
-rw-r--r-- | Makefile.example | 6 |
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: |