summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2013-02-05 09:43:45 -0800
committerGuido van Rossum <guido@python.org>2013-02-05 09:43:45 -0800
commitab45adcb507ea41bf9da23fdc15d75746069726a (patch)
treeef7637b5f0ddd4feefbd7e2d3b67e30fee6b11fb /Makefile
parent39f0edc5e8cba89d85bfc213493d45a4328724c7 (diff)
downloadtrollius-ab45adcb507ea41bf9da23fdc15d75746069726a.tar.gz
Add a few comments.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index d11e971..65a4811 100644
--- a/Makefile
+++ b/Makefile
@@ -1,3 +1,5 @@
+# Some simple testing tasks (sorry, UNIX only).
+
PYTHON=python3
COVERAGE=coverage3
NONTESTS=`find tulip -name [a-z]\*.py ! -name \*_test.py`
@@ -9,6 +11,7 @@ test:
testloop:
while sleep 1; do $(PYTHON) runtests.py -v $(FLAGS); done
+# See README for coverage installation instructions.
cov coverage:
$(COVERAGE) run --branch runtests.py -v $(FLAGS)
$(COVERAGE) html $(NONTESTS)