From caa22e5bbd158fd8d563588293aa763ca5801bed Mon Sep 17 00:00:00 2001 From: "Juan J. Martínez" Date: Sat, 2 Oct 2021 12:33:04 +0000 Subject: Start the test suite --- tests/Makefile | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 tests/Makefile (limited to 'tests/Makefile') diff --git a/tests/Makefile b/tests/Makefile new file mode 100644 index 0000000..6c1a9a4 --- /dev/null +++ b/tests/Makefile @@ -0,0 +1,10 @@ +default: + $(error Please use the Makefile from root directory) + +TESTS := $(wildcard test_*.py) + +test: + python3 -m unittest $(TESTS) + +.PHONY: test default + -- cgit v1.2.3