aboutsummaryrefslogtreecommitdiffstats
path: root/python
diff options
context:
space:
mode:
Diffstat (limited to 'python')
-rw-r--r--python/Makefile7
1 files changed, 6 insertions, 1 deletions
diff --git a/python/Makefile b/python/Makefile
index db3e77a7..bfd33b13 100644
--- a/python/Makefile
+++ b/python/Makefile
@@ -5,6 +5,11 @@ LDFLAGS=-fpic -shared
GHquad.so: GHquad.o
$(CC) $(LDFLAGS) -o $@ $< $(LDLIBS)
-.PHONY: clean
+tests:
+ cd tests; \
+ python -m unittest discover -v
+
clean:
rm -f GHquad.o GHquad.so
+
+.PHONY: clean tests