X-Git-Url: https://gitweb.michael.orlitzky.com/?a=blobdiff_plain;f=makefile;h=9f9798bf94eda41d74dfd7194f3773bcc6544f9d;hb=eacd89382ec94c3e4f86386c3970dbcc09d5448d;hp=8eb2751b3992a0fb059137803ca977e2c62ad7ce;hpb=eb940c4312540b7db2f43a8c4067aff6e94928de;p=dunshire.git 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)