2016-06-14 09:39:45 +00:00
|
|
|
.PHONY: clean-pyc develop
|
2014-02-07 15:20:27 +00:00
|
|
|
|
|
|
|
help:
|
|
|
|
@echo "clean-pyc - remove Python file artifacts"
|
|
|
|
@echo "lint - check style with flake8"
|
|
|
|
@echo "test - run tests quickly with the default Python"
|
|
|
|
@echo "coverage - check code coverage quickly with the default Python"
|
|
|
|
|
|
|
|
clean-pyc:
|
|
|
|
find . -name '*.pyc' -exec rm -f {} +
|
|
|
|
find . -name '*.pyo' -exec rm -f {} +
|
|
|
|
find . -name '*~' -exec rm -f {} +
|
|
|
|
|
2016-06-14 09:39:45 +00:00
|
|
|
develop: clean-pyc
|
|
|
|
pip install -e .[testing,docs]
|
|
|
|
npm install && npm run build
|
|
|
|
|
2014-02-07 15:20:27 +00:00
|
|
|
lint:
|
|
|
|
flake8 wagtail
|
2016-06-22 15:18:23 +00:00
|
|
|
isort --check-only --diff --recursive wagtail
|
2014-02-07 15:20:27 +00:00
|
|
|
|
|
|
|
test:
|
2014-02-13 12:44:49 +00:00
|
|
|
python runtests.py
|
2014-02-07 15:20:27 +00:00
|
|
|
|
|
|
|
test-all:
|
|
|
|
tox
|
|
|
|
|
|
|
|
coverage:
|
|
|
|
coverage run --source wagtail setup.py
|
|
|
|
coverage report -m
|
|
|
|
coverage html
|
|
|
|
open htmlcov/index.html
|