From: Michael Orlitzky Date: Sat, 18 May 2024 21:11:05 +0000 (-0400) Subject: makefile: timeout overrides should no longer be necessary X-Git-Url: https://gitweb.michael.orlitzky.com/?a=commitdiff_plain;ds=sidebyside;h=88dfaad8341867d1df155feaf2591a9acc1157a1;p=sage.d.git makefile: timeout overrides should no longer be necessary --- diff --git a/makefile b/makefile index 63b577a..79cf89a 100644 --- a/makefile +++ b/makefile @@ -1,7 +1,7 @@ SAGE = $(shell which sage) check: - PYTHONPATH="." $(SAGE) -t --timeout=0 --long --exitfirst mjo/ + PYTHONPATH="." $(SAGE) -t --long --exitfirst mjo/ clean: find ./ -type f -name '*.pyc' -delete find ./ -type d -name '__pycache__' -delete