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