Cleanup Makefile comments

This commit is contained in:
Stephen L 2016-12-27 15:24:04 +01:00 committed by Casper da Costa-Luis
parent 17072850f4
commit 6b14dc06f5
No known key found for this signature in database
GPG Key ID: 986B408043AE090D
1 changed files with 6 additions and 1 deletions

View File

@ -1,6 +1,7 @@
# 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
# 3. Only use tabs, not spaces to indent (compatibility with linux make)
#
# Sample makefile compatible with `python setup.py make`:
#```
@ -64,17 +65,21 @@ testcoverage:
@make coverclean
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)
testperf:
# do not use coverage (which is extremely slow)
nosetests tqdm/tests/tests_perf.py -d -v
testtimer:
nosetests tqdm --with-timer -d -v
# another performance test, to check evolution across commits
testasv:
# Test only the last 3 commits (quick test)
asv run -j 8 HEAD~3..HEAD
@make viewasv
testasvfull:
# Test all the commits since the beginning (full test)
asv run -j 8 v1.0.0..master
@make testasv