-
Notifications
You must be signed in to change notification settings - Fork 56
/
Copy pathMakefile
43 lines (32 loc) · 889 Bytes
/
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
# Some simple testing tasks (sorry, UNIX only).
PYTHON=python3
PYFLAKES=pyflakes
FILTER=
doc:
cd docs && make html
echo "open file://`pwd`/docs/_build/html/index.html"
pep:
pycodestyle aiozmq examples tests
flake:
$(PYFLAKES) .
test: pep flake
$(PYTHON) runtests.py $(FILTER)
vtest: pep flake
$(PYTHON) runtests.py -v $(FILTER)
testloop: pep flake
$(PYTHON) runtests.py --forever $(FILTER)
cov cover coverage: pep flake
$(PYTHON) runtests.py --coverage $(FILTER)
clean:
find . -name __pycache__ |xargs rm -rf
find . -type f -name '*.py[co]' -delete
find . -type f -name '*~' -delete
find . -type f -name '.*~' -delete
find . -type f -name '@*' -delete
find . -type f -name '#*#' -delete
find . -type f -name '*.orig' -delete
find . -type f -name '*.rej' -delete
rm -f .coverage
rm -rf coverage
rm -rf docs/_build
.PHONY: all pep test vtest testloop cov clean