From ff5dfd0b4ffa1199bd81edc41d72c9c18b6bedbd Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Thu, 1 Nov 2018 16:07:01 -0400 Subject: [PATCH] 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. --- makefile | 4 ++++ 1 file changed, 4 insertions(+) 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 -- 2.43.2