From 9ca87a7c2aefcdcb97e19e82589e7e00758bdb9f Mon Sep 17 00:00:00 2001 From: Raniere Silva Date: Fri, 19 Dec 2014 09:57:11 -0200 Subject: [PATCH] Add Unit Test target to Makefile --- Makefile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Makefile b/Makefile index badebe2..9eb3640 100644 --- a/Makefile +++ b/Makefile @@ -30,6 +30,11 @@ motivation.html : motivation.md _layouts/slides.html $(INCLUDES) \ -o $@ $< +## unittest : Run unit test (for Python 2 and 3) +unittest: tools/check tools/validation_helpers.py tools/test_check.py + cd tools/ && python2 test_check.py + cd tools/ && python3 test_check.py + ## commands : Display available commands. commands : Makefile @sed -n 's/^##//p' $< -- GitLab