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/?p=sage.d.git;a=commitdiff_plain;h=26ae4210a2e361f0aa3e9b0ca32035a28b471667 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