forked from tqdm/tqdm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
96 lines (79 loc) · 1.91 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
# IMPORTANT: for compatibility with `python setup.py make [alias]`, ensure:
# 1. Every alias is preceded by @[+]make (eg: @make alias)
# 2. A maximum of one @make alias or command per line
#
# Sample makefile compatible with `python setup.py make`:
#```
#all:
# @make test
# @make install
#test:
# nosetest
#install:
# python setup.py install
#```
.PHONY:
alltests
all
flake8
test
testnose
testsetup
testcoverage
testperf
testtimer
installdev
install
build
pypimeta
pypi
none
alltests:
@+make testcoverage
@+make testperf
@+make flake8
@+make testsetup
all:
@+make alltests
@+make build
flake8:
@+flake8 --max-line-length=80 --count --statistics --exit-zero tqdm/
@+flake8 --max-line-length=80 --count --statistics --exit-zero examples/
@+flake8 --max-line-length=80 --count --statistics --exit-zero .
@+flake8 --max-line-length=80 --count --statistics --exit-zero tqdm/tests/
test:
tox --skip-missing-interpreters
testnose:
nosetests tqdm -d -v
testsetup:
python setup.py check --restructuredtext --strict
python setup.py make none
testcoverage:
rm -f .coverage # coverage erase
nosetests tqdm --with-coverage --cover-package=tqdm --cover-erase --cover-min-percentage=80 --ignore-files="tests_perf\.py" -d -v
testperf: # do not use coverage (which is extremely slow)
nosetests tqdm/tests/tests_perf.py -d -v
testtimer:
nosetests tqdm --with-timer -d -v
installdev:
python setup.py develop --uninstall
python setup.py develop
install:
python setup.py install
build:
python -c "import shutil; shutil.rmtree('build', True)"
python -c "import shutil; shutil.rmtree('dist', True)"
python -c "import shutil; shutil.rmtree('tqdm.egg-info', True)"
python setup.py sdist --formats=gztar,zip bdist_wininst
python setup.py sdist bdist_wheel
pypimeta:
python setup.py register
pypi:
twine upload dist/*
buildupload:
@make testsetup
@make build
@make pypimeta
@make pypi
none:
# used for unit testing