-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathMakefile
100 lines (78 loc) · 3.75 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
.PHONY: clean compile_translations coverage docs dummy_translations extract_translations \
fake_translations help pull_translations push_translations quality requirements test \
test-all validate check_keywords
.DEFAULT_GOAL := help
define BROWSER_PYSCRIPT
import os, webbrowser, sys
try:
from urllib import pathname2url
except:
from urllib.request import pathname2url
webbrowser.open("file://" + pathname2url(os.path.abspath(sys.argv[1])))
endef
export BROWSER_PYSCRIPT
BROWSER := python -c "$$BROWSER_PYSCRIPT"
help: ## display this help message
@echo "Please use \`make <target>' where <target> is one of"
@perl -nle'print $& if m{^[a-zA-Z_-]+:.*?## .*$$}' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m %-25s\033[0m %s\n", $$1, $$2}'
clean: ## remove generated byte code, coverage reports, and build artifacts
find . -name '*.pyc' -exec rm -f {} +
find . -name '*.pyo' -exec rm -f {} +
find . -name '*~' -exec rm -f {} +
coverage erase
rm -fr build/
rm -fr dist/
rm -fr *.egg-info
compile_translations: ## compile translation files, outputting .po files for each supported language
./manage.py compilemessages
coverage: clean ## generate and view HTML coverage report
pytest --cov-report html
$(BROWSER) htmlcov/index.html
docs: ## generate Sphinx HTML documentation, including API docs
tox -e docs
$(BROWSER) docs/_build/html/index.html
dummy_translations: ## generate dummy translation (.po) files
cd config_models && i18n_tool dummy
extract_translations: ## extract strings to be translated, outputting .mo files
./manage.py makemessages -l en -v1 -d django
./manage.py makemessages -l en -v1 -d djangojs
fake_translations: extract_translations dummy_translations compile_translations ## generate and compile dummy translation files
upgrade: export CUSTOM_COMPILE_COMMAND=make upgrade
# Define PIP_COMPILE_OPTS="-v" to get more information during make compile-requirements.
compile-requirements: export CUSTOM_COMPILE_COMMAND=make upgrade
compile-requirements: ## Re-compile requirements/*.in files to *.txt.
pip install -r requirements/pip-tools.txt
pip-compile $(COMPILE_OPTS) --allow-unsafe requirements/pip.in
pip-compile $(COMPILE_OPTS) requirements/pip-tools.in
pip install -qr requirements/pip.txt
pip install -qr requirements/pip-tools.txt
pip-compile $(COMPILE_OPTS) requirements/base.in
pip-compile $(COMPILE_OPTS) requirements/test.in
pip-compile $(COMPILE_OPTS) requirements/doc.in
pip-compile $(COMPILE_OPTS) requirements/quality.in
pip-compile $(COMPILE_OPTS) requirements/ci.in
pip-compile $(COMPILE_OPTS) requirements/dev.in
# Let tox control the Django and djangorestframework versions for tests
sed -i.tmp '/^[d|D]jango==/d' requirements/test.txt
sed -i.tmp '/^djangorestframework==/d' requirements/test.txt
rm requirements/test.txt.tmp
upgrade: ## update the requirements/*.txt files with the latest packages satisfying requirements/*.in
$(MAKE) compile-requirements COMPILE_OPTS="--upgrade"
pull_translations: ## pull translations from Transifex
tx pull -t -a
push_translations: ## push source translation files (.po) from Transifex
tx push -s
quality: ## check coding style with pycodestyle and pylint
tox -e quality
requirements: ## install development environment requirements
pip install -qr requirements/pip.txt
pip install -qr requirements/pip-tools.txt
pip-sync requirements/dev.txt requirements/private.*
test: clean ## run tests in the current virtualenv
PYTHONPATH=./:.. pytest
test-all: ## run tests on every supported Python/Django combination
tox -e quality
tox
validate: quality test ## run tests and quality checks
check_keywords: ## Scan the Django models in all installed apps in this project for restricted field names
python manage.py check_reserved_keywords --override_file db_keyword_overrides.yml