]> gitweb.michael.orlitzky.com - sage.d.git/commitdiff
makefile: bypass the "sage" script when testing
authorMichael Orlitzky <michael@orlitzky.com>
Tue, 26 Nov 2024 18:33:25 +0000 (13:33 -0500)
committerMichael Orlitzky <michael@orlitzky.com>
Tue, 26 Nov 2024 18:33:25 +0000 (13:33 -0500)
makefile

index 79cf89af52ad6b6db15204ea7fe7d0b6cad30dd0..96842cca4f5f0895fbf669a04f75c5bf8d34ff41 100644 (file)
--- 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