blob: 6e798c92b88b9689742977b39cada194e59cf2cb (
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
26
27
28
29
30
31
32
33
34
|
PACKAGE=factory
TESTS_DIR=tests
DOC_DIR=docs
# Use current python binary instead of system default.
COVERAGE = python $(shell which coverage)
all: default
default:
clean:
find . -type f -name '*.pyc' -delete
test:
python -W default setup.py test
pylint:
pylint --rcfile=.pylintrc --report=no $(PACKAGE)/
coverage:
$(COVERAGE) erase
$(COVERAGE) run "--include=$(PACKAGE)/*.py,$(TESTS_DIR)/*.py" --branch setup.py test
$(COVERAGE) report "--include=$(PACKAGE)/*.py,$(TESTS_DIR)/*.py"
$(COVERAGE) html "--include=$(PACKAGE)/*.py,$(TESTS_DIR)/*.py"
doc:
$(MAKE) -C $(DOC_DIR) html
.PHONY: all default clean coverage doc pylint test
|