aboutsummaryrefslogtreecommitdiff
path: root/tests/Makefile
diff options
context:
space:
mode:
authorJuan J. Martínez <jjm@usebox.net>2021-10-02 12:33:04 +0000
committerJuan J. Martínez <jjm@usebox.net>2021-10-02 12:33:04 +0000
commitcaa22e5bbd158fd8d563588293aa763ca5801bed (patch)
tree0789e731afeb7844fd68976fc0b1ea53ec4517d7 /tests/Makefile
parentc14900274f20d119c6704f910eec420bf2998866 (diff)
downloadubox-msx-lib-caa22e5bbd158fd8d563588293aa763ca5801bed.tar.gz
ubox-msx-lib-caa22e5bbd158fd8d563588293aa763ca5801bed.zip
Start the test suite
Diffstat (limited to 'tests/Makefile')
-rw-r--r--tests/Makefile10
1 files changed, 10 insertions, 0 deletions
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
+