2013-11-20 15:00:42 +04:00
|
|
|
# You can set these variables from the command line.
|
|
|
|
DJANGO = python manage.py
|
|
|
|
SETTINGS = settings_local
|
|
|
|
|
2014-04-22 13:17:21 +04:00
|
|
|
.PHONY: help docs test test_force_db tdd test_failed update_code update_deps update_db update_landfill full_update reindex
|
2013-11-20 15:00:42 +04:00
|
|
|
|
|
|
|
help:
|
|
|
|
@echo "Please use \`make <target>' where <target> is one of"
|
|
|
|
@echo " docs to builds the docs for Zamboni"
|
|
|
|
@echo " test to run all the test suite"
|
|
|
|
@echo " test_force_db to run all the test suite with a new database"
|
|
|
|
@echo " tdd to run all the test suite, but stop on the first error"
|
|
|
|
@echo " test_failed to rerun the failed tests from the previous run"
|
2014-04-22 13:17:21 +04:00
|
|
|
@echo " update_code to update the git repository and submodules"
|
|
|
|
@echo " update_deps to update the python and npm dependencies"
|
|
|
|
@echo " update_db to run the database migrations"
|
|
|
|
@echo " full_update to update the code, the dependencies and the database"
|
|
|
|
@echo " update_landfill to load the landfill database data"
|
2013-11-20 15:00:42 +04:00
|
|
|
@echo " reindex to reindex everything in elasticsearch, for AMO"
|
|
|
|
@echo "Check the Makefile to know exactly what each target is doing. If you see a "
|
|
|
|
@echo "target using something like $(SETTINGS), you can make it use another value:"
|
2014-04-22 13:17:21 +04:00
|
|
|
@echo " make SETTINGS=settings_mine docs"
|
2013-11-20 15:00:42 +04:00
|
|
|
|
|
|
|
docs:
|
|
|
|
$(MAKE) -C docs html
|
|
|
|
|
|
|
|
test:
|
2014-06-03 13:30:16 +04:00
|
|
|
$(DJANGO) test --settings=$(SETTINGS) --noinput --logging-clear-handlers --with-id -v 2 $(ARGS)
|
2013-11-20 15:00:42 +04:00
|
|
|
|
|
|
|
test_force_db:
|
2014-06-03 13:30:16 +04:00
|
|
|
FORCE_DB=1 $(DJANGO) test --settings=$(SETTINGS) --noinput --logging-clear-handlers --with-id -v 2 $(ARGS)
|
2013-11-20 15:00:42 +04:00
|
|
|
|
|
|
|
tdd:
|
2014-06-03 13:30:16 +04:00
|
|
|
$(DJANGO) test --settings=$(SETTINGS) --noinput --failfast --pdb --with-id -v 2 $(ARGS)
|
2013-11-20 15:00:42 +04:00
|
|
|
|
|
|
|
test_failed:
|
2014-06-03 13:30:16 +04:00
|
|
|
$(DJANGO) test --settings=$(SETTINGS) --noinput --logging-clear-handlers --with-id -v 2 --failed $(ARGS)
|
2013-11-20 15:00:42 +04:00
|
|
|
|
2014-04-22 13:17:21 +04:00
|
|
|
update_code:
|
2013-11-20 15:00:42 +04:00
|
|
|
git checkout master && git pull && git submodule update --init --recursive
|
2014-04-22 13:17:21 +04:00
|
|
|
cd vendor && git pull && git submodule update --init && cd -
|
|
|
|
|
|
|
|
update_deps:
|
2014-02-27 04:43:26 +04:00
|
|
|
pip install --no-deps --exists-action=w --download-cache=/tmp/pip-cache -r requirements/dev.txt --find-links https://pyrepo.addons.mozilla.org/ --allow-external PIL --allow-unverified PIL
|
2013-12-12 01:15:12 +04:00
|
|
|
npm install
|
|
|
|
|
2014-04-22 13:17:21 +04:00
|
|
|
update_db:
|
|
|
|
schematic migrations
|
2013-11-20 15:00:42 +04:00
|
|
|
|
2014-04-22 13:17:21 +04:00
|
|
|
full_update: update_code update_deps update_db
|
|
|
|
|
|
|
|
update_landfill:
|
2013-11-20 15:00:42 +04:00
|
|
|
$(DJANGO) install_landfill --settings=$(SETTINGS) $(ARGS)
|
|
|
|
|
|
|
|
reindex:
|
|
|
|
$(DJANGO) reindex --settings=$(SETTINGS) $(ARGS)
|