-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathMakefile
173 lines (131 loc) · 3.13 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
.PHONY: all develop test lint clean doc format
# The package name
PKG=abilian
all: test lint
#
# Setup
#
develop: install-deps activate-pre-commit configure-git
install-deps:
@echo "--> Installing dependencies"
pip install -U pip setuptools wheel
poetry install
yarn
activate-pre-commit:
@echo "--> Activating pre-commit hook"
pre-commit install
configure-git:
@echo "--> Configuring git"
git config branch.autosetuprebase always
#
# testing & checking
#
test-all: test test-readme
test:
@echo "--> Running Python tests"
pytest -n auto --ff -x -p no:randomly
@echo ""
test-randomly:
@echo "--> Running Python tests in random order"
pytest
@echo ""
test-with-coverage:
@echo "--> Running Python tests"
pytest --cov $(PKG)
@echo ""
test-with-typeguard:
@echo "--> Running Python tests with typeguard"
pytest --typeguard-packages=abilian
@echo ""
vagrant-tests:
vagrant up
vagrant ssh -c /vagrant/etc/vagrant_test.sh
#
# Various Checkers
#
lint-common: lint-py lint-js lint-rst lint-doc
lint: lint-common lint-circleci
lint-ci: lint-common
lint-all: lint lint-mypy lint-bandit
lint-py:
@echo "--> Linting Python files /w flake8"
flake8 src tests
@echo ""
lint-mypy:
@echo "--> Typechecking Python files w/ mypy"
mypy src tests
@echo ""
lint-py3k:
@echo "--> Checking Python 3 compatibility"
pylint --py3k -j3 src tests
@echo ""
lint-circleci:
@echo "--> Checking CircleCI config"
circleci config validate
@echo ""
lint-js:
@echo "--> Linting JS files"
yarn run eslint src/abilian/web/resources/js/
@echo ""
lint-less:
@echo "--> Linting LESS files"
yarn run stylelint src/abilian/web/resources/less/
@echo ""
lint-rst:
@echo "--> Linting .rst files"
rst-lint *.rst
@echo ""
lint-doc:
@echo "--> Linting doc"
#sphinx-build -W -b dummy docs/ docs/_build/
sphinx-build -b dummy docs/ docs/_build/
@echo ""
lint-bandit:
@echo "--> Linting python w/ Bandit"
bandit -s B101 `find src -name '*.py' | grep -v test`
@echo ""
#
# Formatting
#
format: format-py format-js format-less
format-py:
docformatter -i -r src
black src demo tests *.py
isort src abilian demo tests *.py
format-js:
yarn run prettier --write src/abilian/web/resources/js
format-less:
yarn run prettier --write --tab-width 2 src/abilian/web/resources/less/*.less
#
# Everything else
#
install:
poetry install
doc: doc-html doc-pdf
doc-html:
sphinx-build -W -b html docs/ docs/_build/html
doc-pdf:
sphinx-build -W -b latex docs/ docs/_build/latex
make -C docs/_build/latex all-pdf
clean:
find . -type f -name *.pyc -delete
find . -type d -name __pycache__ -delete
rm -rf *.egg-info *.egg .coverage .eggs .cache .mypy_cache .pyre \
.pytest_cache .pytest .DS_Store docs/_build docs/cache docs/tmp \
dist build npm-debug.log yarn-error.log
tidy: clean
rm -rf .tox .nox .dox .travis-solo
rm -rf node_modules
rm -rf instance
update-pot:
# _n => ngettext, _l => lazy_gettext
python setup.py extract_messages update_catalog compile_catalog
publish: clean
git push --tags
poetry build
twine upload dist/*
update-deps:
pip install -U pip setuptools wheel
poetry update
poetry export -o etc/requirements.txt
yarn upgrade -s --no-progress