forked from myint/pyformat
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMakefile
More file actions
29 lines (25 loc) · 653 Bytes
/
Makefile
File metadata and controls
29 lines (25 loc) · 653 Bytes
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
check:
pycodestyle pyformat.py setup.py
pydocstyle pyformat.py setup.py
pylint \
--rcfile=/dev/null \
--errors-only \
pyformat.py setup.py
check-manifest
rstcheck README.rst
scspell pyformat.py setup.py test_pyformat.py README.rst
coverage:
@coverage erase
@PYFORMAT_COVERAGE=1 coverage run \
--branch --parallel-mode \
--omit='*/distutils/*,*/site-packages/*' \
test_pyformat.py
@coverage combine
@coverage report
open_coverage: coverage
@coverage html
@python -m webbrowser -n "file://${PWD}/htmlcov/index.html"
mutant:
@mut.py -t pyformat -u test_pyformat -mc
readme:
@restview --long-description --strict