-
Notifications
You must be signed in to change notification settings - Fork 62
/
Makefile
70 lines (51 loc) · 1.72 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
61
62
63
64
65
66
67
68
69
70
# Makefile for testing
SHELL := bash
.PHONY: dogfood lint doc-check doc-preview clean build dist-test dist \
test cov html reg profile
dogfood:
./ydiff.py -u
git diff | ./ydiff.py -s
lint:
pycodestyle --ignore=E203,W503,W504 *.py */*.py
doc-check:
./setup.py --long-description | rst2html.py --strict > /dev/null
doc-preview:
./setup.py --long-description | rst2html.py --strict > output.html
python3 -m webbrowser -n "file://$(shell pwd)/output.html"
sleep 1
rm -f output.html
test: lint doc-check cov reg
cov:
coverage run tests/test_ydiff.py
coverage report --show-missing
html:
coverage html
python3 -m webbrowser -n "file://$(shell pwd)/htmlcov/index.html"
reg:
tests/regression.sh
profile:
tests/profile.sh $(shell for x in {0..99}; do echo tests/*/in.diff; done)
profile-difflib:
tests/profile.sh tests/large-hunk/tao.diff
clean:
rm -f MANIFEST profile*.tmp* .coverage
rm -rf build/ ydiff.egg-info/ dist/ __pycache__/ htmlcov/
build:
./setup.py build sdist
# Expected to run outside docker with twine installed via pip
dist-test: docker-test clean build
~/.local/bin/twine upload --repository=testpypi dist/ydiff-*.tar.gz
rm -f ~/.pypirc
# Expected to run outside docker with twine installed via pip
dist: docker-test clean build
~/.local/bin/twine upload dist/ydiff-*.tar.gz
rm -f ~/.pypirc
docker-test:
docker run -v $(shell pwd):$(shell pwd) -w $(shell pwd) -t --rm \
python:3-alpine /bin/sh -ec \
'apk add bash git less make; pip install -r requirements-dev.txt; make test'
docker-shell:
docker run -v $(shell pwd):$(shell pwd) -w $(shell pwd) -it --rm -P \
python:3-alpine /bin/sh -xc \
'apk add bash git less make; pip install -r requirements-dev.txt; exec /bin/sh'
# vim:set noet ts=8 sw=8: