From 7e799a30d4aa8b450f8da2c03d8c7277e03eddf5 Mon Sep 17 00:00:00 2001 From: Young Date: Sun, 29 May 2016 17:47:23 +0800 Subject: [PATCH] update make file --- binding/python/Makefile | 3 +++ binding/python/README.md | 4 +--- 2 files changed, 4 insertions(+), 3 deletions(-) create mode 100644 binding/python/Makefile diff --git a/binding/python/Makefile b/binding/python/Makefile new file mode 100644 index 0000000..42ad528 --- /dev/null +++ b/binding/python/Makefile @@ -0,0 +1,3 @@ +test: + cd ./multiverso && python -m unittest test.TestMultiversoTables.test_array + cd ./multiverso && python -m unittest test.TestMultiversoTables.test_matrix diff --git a/binding/python/README.md b/binding/python/README.md index d0a5741..ccdb038 100644 --- a/binding/python/README.md +++ b/binding/python/README.md @@ -4,9 +4,7 @@ I presume you followed the [README](../../README.md) and have build multiverso s # Run tests ``` -cd ./multiverso -python -m unittest test.TestMultiversoTables.test_array -python -m unittest test.TestMultiversoTables.test_matrix +make test ```