From: Michael Orlitzky Date: Thu, 1 Nov 2018 20:07:01 +0000 (-0400) Subject: makefile: add a "make check" target to run the tests properly. X-Git-Url: http://gitweb.michael.orlitzky.com/?p=sage.d.git;a=commitdiff_plain;h=ff5dfd0b4ffa1199bd81edc41d72c9c18b6bedbd makefile: add a "make check" target to run the tests properly. We need to utter magic words to get the test suite to work, so I've encoded them in a "make check" target for future reference. --- diff --git a/makefile b/makefile index f067891..858d067 100644 --- a/makefile +++ b/makefile @@ -1,2 +1,6 @@ +SAGE = $(shell which sage) + +check: + PYTHONPATH="." $(SAGE) -t mjo/ clean: find ./ -type f -name '*.pyc' -delete