Skip to content
Snippets Groups Projects
Commit d6db4f05 authored by Greg Wilson's avatar Greg Wilson
Browse files

Merge pull request #70 from r-gaia-cs/add-unittest-to-make

Add Unit Test target to Makefile
parents 383f4b7f 9ca87a7c
Branches
Tags
No related merge requests found
......@@ -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' $<
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment