From: Michael Orlitzky Date: Wed, 4 Nov 2020 14:52:52 +0000 (-0500) Subject: makefile: don't allow tests to time out. X-Git-Url: http://gitweb.michael.orlitzky.com/?a=commitdiff_plain;h=26ae4210a2e361f0aa3e9b0ca32035a28b471667;hp=823fb2a587e26436f46854fe44be0e8df46a6715;p=sage.d.git makefile: don't allow tests to time out. --- diff --git a/makefile b/makefile index ec7406f..b9df15c 100644 --- a/makefile +++ b/makefile @@ -1,7 +1,7 @@ SAGE = $(shell which sage) check: - PYTHONPATH="." $(SAGE) -t mjo/ + PYTHONPATH="." $(SAGE) -t --timeout=0 mjo/ clean: find ./ -type f -name '*.pyc' -delete find ./ -type d -name '__pycache__' -delete