From eacd89382ec94c3e4f86386c3970dbcc09d5448d Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Fri, 4 Nov 2016 19:11:45 -0400 Subject: [PATCH] Add a "checkloop" makefile target to run tests forever. --- makefile | 9 +++++++++ 1 file changed, 9 insertions(+) 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) -- 2.43.2