fixes for makefile

This commit is contained in:
Oliver 2017-04-11 17:27:14 +10:00
parent 338dcd3b72
commit 599cdc0a7b

View File

@ -13,16 +13,17 @@ style:
test: test:
python InvenTree/manage.py test --noinput python InvenTree/manage.py test --noinput
setup:
# TODO: replace this with a proper setup.py
pip install -U -r requirements/base.txt
migrate
migrate: migrate:
python InvenTree/manage.py makemigrations python InvenTree/manage.py makemigrations
python InvenTree/manage.py migrate --run-syncdb python InvenTree/manage.py migrate --run-syncdb
python InvenTree/manage.py check python InvenTree/manage.py check
install:
# TODO: replace this with a proper setup.py
pip install -U -r requirements/base.txt
setup: install migrate
setup_ci: setup_ci:
pip install -U -r requirements/build.txt pip install -U -r requirements/build.txt