forked from rbarrois/django_xworkflows
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
50 lines (33 loc) · 1.23 KB
/
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
44
45
46
47
48
49
50
PACKAGE=django_xworkflows
TESTS_DIR=tests
DOC_DIR=docs
# Use current python binary instead of system default.
COVERAGE = python $(shell which coverage)
# Dependencies
DJANGO ?= 1.9
NEXT_DJANGO = $(shell python -c "v='$(DJANGO)'; parts=v.split('.'); parts[-1]=str(int(parts[-1])+1); print('.'.join(parts))")
REQ_FILE = auto_dev_requirements_django$(DJANGO).txt
all: default
default:
install-deps: $(REQ_FILE)
pip install --upgrade pip setuptools
pip install --upgrade -r $<
pip freeze
auto_dev_requirements_%.txt: dev_requirements_%.txt dev_requirements.txt requirements.txt
grep --no-filename "^[^#-]" $^ | grep -v "^Django" > $@
echo "Django>=$(DJANGO),<$(NEXT_DJANGO)" >> $@
clean:
find . -type f -name '*.pyc' -delete
find . -type f -path '*/__pycache__/*' -delete
find . -type d -empty -delete
@rm -f auto_dev_requirements_*
test: install-deps
python -W default setup.py test
coverage: install-deps
$(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 install-deps pylint test