From: Michael Orlitzky Date: Thu, 3 Dec 2020 22:19:19 +0000 (-0500) Subject: makefile: add --exitfirst to the test runner. X-Git-Url: http://gitweb.michael.orlitzky.com/?p=sage.d.git;a=commitdiff_plain;h=bda501114d5c5c907743d60f65157b85df8cb250 makefile: add --exitfirst to the test runner. --- diff --git a/makefile b/makefile index 119be79..63b577a 100644 --- a/makefile +++ b/makefile @@ -1,7 +1,7 @@ SAGE = $(shell which sage) check: - PYTHONPATH="." $(SAGE) -t --timeout=0 --long mjo/ + PYTHONPATH="." $(SAGE) -t --timeout=0 --long --exitfirst mjo/ clean: find ./ -type f -name '*.pyc' -delete find ./ -type d -name '__pycache__' -delete