From: Michael Orlitzky Date: Tue, 26 Nov 2024 18:33:25 +0000 (-0500) Subject: makefile: bypass the "sage" script when testing X-Git-Url: https://gitweb.michael.orlitzky.com/?a=commitdiff_plain;h=70f98fbff3964d9167ee4441a54493a2d961ad9f;p=sage.d.git makefile: bypass the "sage" script when testing --- diff --git a/makefile b/makefile index 79cf89a..96842cc 100644 --- a/makefile +++ b/makefile @@ -1,7 +1,5 @@ -SAGE = $(shell which sage) - check: - PYTHONPATH="." $(SAGE) -t --long --exitfirst mjo/ + PYTHONPATH="." python -m sage.doctest --long --exitfirst mjo/ clean: find ./ -type f -name '*.pyc' -delete find ./ -type d -name '__pycache__' -delete