forked from ymattw/ydiff
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
60 lines (42 loc) · 1.14 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
51
52
53
54
55
56
57
58
59
60
# Makefile for testing
TESTPYPI = http://testpypi.python.org/pypi
PYPI = http://pypi.python.org/pypi
.PHONY: dogfood doc-check clean build dist-test dist \
test test3 cov cov3 html reg reg3 profile profile3
dogfood:
./cdiff.py
git diff | ./cdiff.py -s
doc-check:
./setup.py --long-description | rst2html.py --strict > output.html
python -m webbrowser -n "file://$(shell pwd)/output.html"
sleep 1
rm -f output.html
test: cov reg
test3: cov3 reg3
cov:
coverage run tests/test_cdiff.py
coverage report --show-missing
cov3:
python3 `which coverage` run tests/test_cdiff.py
python3 `which coverage` report --show-missing
html:
coverage html
python -m webbrowser -n "file://$(shell pwd)/htmlcov/index.html"
reg:
tests/regression.sh
reg3:
PYTHON=python3 tests/regression.sh
profile:
tests/profile.sh profile.tmp
profile3:
tests/profile.sh profile3.tmp
clean:
rm -f MANIFEST profile*.tmp* .coverage
rm -rf build/ cdiff.egg-info/ dist/ __pycache__/ htmlcov/
build:
./setup.py build sdist
dist-test:
./setup.py build sdist register upload -r $(TESTPYPI)
dist:
./setup.py build sdist register upload -r $(PYPI)
# vim:set noet ts=8 sw=8: