forked from samuelcolvin/xdelta3-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
56 lines (48 loc) · 1.1 KB
/
Makefile
File metadata and controls
56 lines (48 loc) · 1.1 KB
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
.PHONY: prepare
prepare:
rm -rf xdelta3/lib/ || true
mkdir xdelta3/lib/
cp xdelta/xdelta3/xdelta3*.c xdelta3/lib/
cp xdelta/xdelta3/xdelta3*.h xdelta3/lib/
rm xdelta3/lib/*test.h
.PHONY: install
install: prepare
pip install -U setuptools pip
pip install -U .
pip install -r tests/requirements.txt
.PHONY: isort
isort:
isort -rc -w 120 xdelta3
isort -rc -w 120 tests
.PHONY: lint
lint:
python setup.py check -rms
flake8 xdelta3/ tests/
pytest xdelta3 -p no:sugar -q
.PHONY: test
test: install
pytest --cov=xdelta3
.PHONY: quickbuild
quickbuild: prepare
rm *.so || true
python setup.py build --build-lib . && printf "\n build succeeded\n\n"
.PHONY: testcov
testcov: quickbuild
pytest --cov=xdelta3 && (echo "building coverage html"; coverage html)
.PHONY: all
all: testcov lint
.PHONY: clean
clean:
rm -rf `find . -name __pycache__`
rm -f `find . -type f -name '*.py[co]' `
rm -f `find . -type f -name '*~' `
rm -f `find . -type f -name '.*~' `
rm -rf xdelta3/lib/
rm -rf htmlcov
rm -rf *.egg-info
rm -rf *.so
rm -rf dist
rm -f .coverage
rm -f .coverage.*
rm -rf build
python setup.py clean