diff --git a/Makefile b/Makefile index 686b188b3c..7c066a2c95 100644 --- a/Makefile +++ b/Makefile @@ -7,13 +7,6 @@ clean: rm -rf .tox rm -f .coverage -style: - flake8 InvenTree - -test: - python InvenTree/manage.py check - python InvenTree/manage.py test build company part stock - migrate: python InvenTree/manage.py makemigrations company python InvenTree/manage.py makemigrations part @@ -28,10 +21,20 @@ install: setup: install migrate +style: + flake8 InvenTree + +test: + python InvenTree/manage.py check + python InvenTree/manage.py test build company part stock + coverage: python InvenTree/manage.py check coverage run InvenTree/manage.py test build company part stock coverage html +docs: + pip install -U -r docs/requirements.txt + superuser: python InvenTree/manage.py createsuperuser diff --git a/docs/requirements.txt b/docs/requirements.txt new file mode 100644 index 0000000000..5d14851f8a --- /dev/null +++ b/docs/requirements.txt @@ -0,0 +1 @@ +Sphinx>=2.0.1 \ No newline at end of file