blob: f9c27c0095b38bee6f1783c3e4f4707249aefe9f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
all: default
default:
clean:
find . -type f -name '*.pyc' -delete
test:
python -W default setup.py test
coverage:
coverage erase
coverage run "--include=factory/*.py,tests/*.py" --branch setup.py test
coverage report "--include=factory/*.py,tests/*.py"
coverage html "--include=factory/*.py,tests/*.py"
doc:
$(MAKE) -C docs html
.PHONY: all default clean coverage doc test
|