tqdm/Makefile

114 lines
2.2 KiB
Makefile
Raw Normal View History

# IMPORTANT: for compatibility with `python setup.py make [alias]`, ensure:
# 1. Every alias is preceded by @[+]make (eg: @make alias)
2015-11-07 23:11:02 +00:00
# 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
2015-10-31 11:38:53 +00:00
all
flake8
2015-10-31 11:38:53 +00:00
test
testnose
testsetup
2015-10-31 11:38:53 +00:00
testcoverage
testperf
2015-11-26 10:23:08 +00:00
testtimer
2016-04-07 21:10:09 +00:00
distclean
coverclean
prebuildclean
clean
2015-10-31 11:38:53 +00:00
installdev
install
build
pypimeta
pypi
none
2016-06-04 12:58:44 +00:00
help:
@python setup.py make
2015-10-31 11:38:53 +00:00
alltests:
@+make testcoverage
@+make testperf
@+make flake8
@+make testsetup
all:
@+make alltests
@+make build
2015-06-15 09:02:33 +00:00
flake8:
2016-10-31 00:45:59 +00:00
@+flake8 --max-line-length=80 --count --statistics --exit-zero -j 8 --exclude .asv .
2015-06-15 09:02:33 +00:00
test:
tox --skip-missing-interpreters
testnose:
2015-11-26 10:23:08 +00:00
nosetests tqdm -d -v
2015-06-15 09:02:33 +00:00
testsetup:
python setup.py check --restructuredtext --strict
python setup.py make none
testcoverage:
2016-04-07 21:10:09 +00:00
@make coverclean
nosetests tqdm --with-coverage --cover-package=tqdm --cover-erase --cover-min-percentage=80 --ignore-files="tests_perf\.py" -d -v
2015-11-26 10:23:08 +00:00
testperf: # do not use coverage (which is extremely slow)
nosetests tqdm/tests/tests_perf.py -d -v
2015-11-26 10:23:08 +00:00
testtimer:
nosetests tqdm --with-timer -d -v
2016-04-07 21:10:09 +00:00
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('tqdm.egg-info', True)"
coverclean:
@+python -c "import os; os.remove('.coverage') if os.path.exists('.coverage') else None"
clean:
@+python -c "import os; import glob; [os.remove(i) for i in glob.glob('*.py[co]')]"
@+python -c "import os; import glob; [os.remove(i) for i in glob.glob('tqdm/*.py[co]')]"
@+python -c "import os; import glob; [os.remove(i) for i in glob.glob('tqdm/tests/*.py[co]')]"
installdev:
python setup.py develop --uninstall
python setup.py develop
install:
python setup.py install
build:
2016-04-07 21:10:09 +00:00
@make prebuildclean
python setup.py sdist --formats=gztar,zip bdist_wheel
2016-04-07 21:10:09 +00:00
python setup.py bdist_wininst
pypimeta:
python setup.py register
pypi:
twine upload dist/*
buildupload:
@make testsetup
@make build
@make pypimeta
@make pypi
none:
2015-10-31 11:38:53 +00:00
# used for unit testing