Simplify Makefile
This commit is contained in:
parent
22a7568498
commit
43b4ffb88a
1 changed files with 4 additions and 12 deletions
16
Makefile
16
Makefile
|
@ -53,17 +53,9 @@ test_project: test_venv/cas/manage.py
|
||||||
@echo "##############################################################"
|
@echo "##############################################################"
|
||||||
@echo "A test django project was created in $(realpath test_venv/cas)"
|
@echo "A test django project was created in $(realpath test_venv/cas)"
|
||||||
|
|
||||||
run_test_server: test_project
|
run_server: test_project
|
||||||
test_venv/bin/python test_venv/cas/manage.py runserver
|
test_venv/bin/python test_venv/cas/manage.py runserver
|
||||||
|
|
||||||
tests: test_venv
|
run_tests: test_venv
|
||||||
test_venv/bin/py.test
|
test_venv/bin/py.test --cov=cas_server --cov-report html
|
||||||
|
rm htmlcov/coverage_html.js # I am really pissed off by those keybord shortcuts
|
||||||
coverage: test_venv
|
|
||||||
test_venv/bin/py.test --cov=cas_server --cov-report xml --cov-report html
|
|
||||||
|
|
||||||
test_venv/bin/python-codacy-coverage:
|
|
||||||
test_venv/bin/pip install codacy-coverage
|
|
||||||
|
|
||||||
coverage_codacy: coverage test_venv/bin/python-codacy-coverage
|
|
||||||
test_venv/bin/python-codacy-coverage -r coverage.xml
|
|
||||||
|
|
Loading…
Reference in a new issue