X-Git-Url: http://gitweb.michael.orlitzky.com/?p=dunshire.git;a=blobdiff_plain;f=makefile;h=9f9798bf94eda41d74dfd7194f3773bcc6544f9d;hp=8eb2751b3992a0fb059137803ca977e2c62ad7ce;hb=428ef4a28dc25409df02f6af024043c21307a646;hpb=903bd9bee55bcc404ae39a94d2625814d5bcc2a3 diff --git a/makefile b/makefile index 8eb2751..9f9798b 100644 --- a/makefile +++ b/makefile @@ -16,6 +16,15 @@ doctest: check: PYTHONPATH="." test/__main__.py +.PHONE: checkloop +checkloop: + COUNT=0; \ + while [ $$? -eq 0 ]; do \ + COUNT=`expr $$COUNT + 1`; \ + echo $$COUNT; \ + PYTHONPATH="." test/__main__.py; \ + done; + .PHONY: lint lint: pylint --rcfile=./.pylintrc $(SRCS)