blob: 144c2e941bee40bd32463ae90b664e95310cfe25 (
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
25
|
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
|