Commit 5acc2185 by jsa

consolidate local requirements target in Makefile

parent adaff068
......@@ -3,19 +3,19 @@ help:
@echo 'Makefile for edx-ecommerce '
@echo ' '
@echo 'Usage: '
@echo ' make dev_requirements install requirements for local development '
@echo ' make test_requirements install test requirements '
@echo ' make migrate apply migrations '
@echo ' make serve start the dev server at localhost:8002 '
@echo ' make clean delete generated byte code and coverage reports'
@echo ' make test_python run unit tests with migrations disabled '
@echo ' make html_coverage generate and view HTML coverage report '
@echo ' make quality run pep8 and pylint '
@echo ' make validate run unit tests, followed by quality checks '
@echo ' make accept run acceptance tests '
@echo ' make requirements install requirements for local development and testing '
@echo ' make test_requirements install test requirements '
@echo ' make migrate apply migrations '
@echo ' make serve start the dev server at localhost:8002 '
@echo ' make clean delete generated byte code and coverage reports '
@echo ' make test_python run unit tests with migrations disabled '
@echo ' make html_coverage generate and view HTML coverage report '
@echo ' make quality run pep8 and pylint '
@echo ' make validate run unit tests, followed by quality checks '
@echo ' make accept run acceptance tests '
@echo ' '
dev_requirements: test_requirements
requirements: test_requirements
pip install -qr requirements/local.txt --exists-action w
test_requirements:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment