-
Notifications
You must be signed in to change notification settings - Fork 12
/
Makefile
106 lines (88 loc) · 2.22 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
# IMPORTANT: for compatibility with `python -m pymake [alias]`, ensure:
# 1. Every alias is preceded by @[+]make (eg: @make alias)
# 2. A maximum of one @make alias or command per line
# see: https://github.com/tqdm/py-make/issues/1
.PHONY:
alltests
all
flake8
test
pytest
testsetup
testcoverage
testtimer
distclean
coverclean
prebuildclean
clean
toxclean
install_dev
install
build
buildupload
pypi
help
none
run
help:
@python -m pymake -p
alltests:
@+make testcoverage
@+make flake8
@+make testsetup
all:
@+make alltests
@+make build
flake8:
@+flake8 -j 8 --count --statistics --exit-zero .
test:
tox --skip-missing-interpreters
pytest:
pytest
testsetup:
@make help
testcoverage:
@make coverclean
pytest --cov=pymake --cov-report=xml --cov-report=term --cov-fail-under=80
testtimer:
pytest
distclean:
@+make coverclean
@+make prebuildclean
@+make clean
prebuildclean:
@+python -c "import shutil; shutil.rmtree('build', True)"
@+python -c "import shutil; shutil.rmtree('dist', True)"
@+python -c "import shutil; shutil.rmtree('pymake.egg-info', True)"
@+python -c "import shutil; shutil.rmtree('.eggs', True)"
coverclean:
@+python -c "import os; os.remove('.coverage') if os.path.exists('.coverage') else None"
@+python -c "import os, glob; [os.remove(i) for i in glob.glob('.coverage.*')]"
@+python -c "import shutil; shutil.rmtree('tests/__pycache__', True)"
@+python -c "import shutil; shutil.rmtree('pymake/__pycache__', True)"
@+python -c "import shutil; shutil.rmtree('examples/__pycache__', True)"
clean:
@+python -c "import os, glob; [os.remove(i) for i in glob.glob('*.py[co]')]"
@+python -c "import os, glob; [os.remove(i) for i in glob.glob('tests/*.py[co]')]"
@+python -c "import os, glob; [os.remove(i) for i in glob.glob('pymake/*.py[co]')]"
@+python -c "import os, glob; [os.remove(i) for i in glob.glob('examples/*.py[co]')]"
toxclean:
@+python -c "import shutil; shutil.rmtree('.tox', True)"
install:
python -m pip install .
install_dev:
python -m pip install -e .
build:
@make prebuildclean
@make testsetup
python -m build
python -m twine check dist/*
pypi:
python -m twine upload dist/*
buildupload:
@make build
@make pypi
none:
# used for unit testing
run:
python -Om pymake