2015-11-01 16:01:18 +00:00
|
|
|
# IMPORTANT: for compatibility with `python setup.py make [alias]`, ensure:
|
|
|
|
# 1. A line return after every alias
|
|
|
|
# 2. One command per line
|
|
|
|
# E.g.:
|
|
|
|
# ```
|
|
|
|
# all:
|
|
|
|
# @make test
|
|
|
|
# @make install
|
|
|
|
# test:
|
|
|
|
# nosetest
|
|
|
|
# install:
|
|
|
|
# python setup.py install
|
2015-10-15 13:47:02 +00:00
|
|
|
# ```
|
|
|
|
|
|
|
|
.PHONY:
|
|
|
|
alltests
|
2015-10-31 11:38:53 +00:00
|
|
|
all
|
2015-10-15 13:47:02 +00:00
|
|
|
flake8
|
2015-10-31 11:38:53 +00:00
|
|
|
test
|
|
|
|
testnose
|
2015-10-15 13:47:02 +00:00
|
|
|
testsetup
|
2015-10-31 11:38:53 +00:00
|
|
|
testcoverage
|
|
|
|
installdev
|
|
|
|
install
|
|
|
|
build
|
|
|
|
pypimeta
|
|
|
|
pypi
|
|
|
|
none
|
|
|
|
|
|
|
|
alltests:
|
|
|
|
@make testcoverage
|
|
|
|
@make flake8
|
|
|
|
@make testsetup
|
2015-10-15 13:47:02 +00:00
|
|
|
|
|
|
|
all:
|
2015-10-31 11:38:53 +00:00
|
|
|
@make alltests
|
|
|
|
@make build
|
2015-10-13 13:15:11 +00:00
|
|
|
|
2015-06-15 09:02:33 +00:00
|
|
|
flake8:
|
2015-06-18 14:58:29 +00:00
|
|
|
flake8 --max-line-length=80 --count --statistics --exit-zero tqdm/
|
2015-09-14 15:28:07 +00:00
|
|
|
flake8 --max-line-length=80 --count --statistics --exit-zero examples/
|
2015-11-01 16:01:18 +00:00
|
|
|
flake8 --max-line-length=80 --count --statistics --exit-zero .
|
2015-06-15 09:02:33 +00:00
|
|
|
|
|
|
|
test:
|
2015-10-13 22:42:01 +00:00
|
|
|
tox --skip-missing-interpreters
|
|
|
|
|
|
|
|
testnose:
|
2015-06-15 09:02:33 +00:00
|
|
|
nosetests tqdm -v
|
|
|
|
|
2015-10-13 13:15:11 +00:00
|
|
|
testsetup:
|
|
|
|
python setup.py check --restructuredtext --strict
|
2015-10-15 15:13:07 +00:00
|
|
|
python setup.py make none
|
2015-10-13 13:15:11 +00:00
|
|
|
|
2015-10-13 13:34:14 +00:00
|
|
|
testcoverage:
|
2015-10-29 10:34:47 +00:00
|
|
|
rm -f .coverage # coverage erase
|
2015-06-15 09:02:33 +00:00
|
|
|
nosetests tqdm --with-coverage --cover-package=tqdm -v
|
2015-10-13 13:15:11 +00:00
|
|
|
|
|
|
|
installdev:
|
|
|
|
python setup.py develop --uninstall
|
|
|
|
python setup.py develop
|
|
|
|
|
|
|
|
install:
|
|
|
|
python setup.py install
|
|
|
|
|
|
|
|
build:
|
|
|
|
python setup.py sdist --formats=gztar,zip bdist_wininst
|
|
|
|
python setup.py sdist bdist_wheel
|
|
|
|
|
|
|
|
pypimeta:
|
|
|
|
python setup.py register
|
|
|
|
|
|
|
|
pypi:
|
|
|
|
twine upload dist/*
|
2015-10-15 13:47:02 +00:00
|
|
|
|
|
|
|
none:
|
2015-10-31 11:38:53 +00:00
|
|
|
# used for unit testing
|