From 235ca0eb8520bd3cd19b5aeecfd1ba64815dc81d Mon Sep 17 00:00:00 2001 From: David Trattnig <david@subsquare.at> Date: Fri, 22 Jul 2022 14:00:51 +0200 Subject: [PATCH] Chore: Run test suite from make file --- Makefile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Makefile b/Makefile index 892acfcf..a0925a2a 100644 --- a/Makefile +++ b/Makefile @@ -8,6 +8,7 @@ help: @echo " lint - verify code style" @echo " spelling - check spelling of text" @echo " style - apply automatic formatting" + @echo " test - run the test suite" @echo @@ -24,3 +25,7 @@ spelling: style: python3 -m isort . black . + +.PHONY: test +test: + python3 -m unittest discover tests \ No newline at end of file -- GitLab