ref: 69212a01cb9b7e99ebdfee7dc96ec84abde16e76
parent: b1366583d97c0198be27e5e920c10e414d50c3b0
author: Paul Brossier <piem@piem.org>
date: Thu Apr 21 22:05:39 EDT 2016
Makefile: add test_python target, added to .travis.yml
--- a/.travis.yml
+++ b/.travis.yml
@@ -82,6 +82,7 @@
script:
- make build
- make build_python
+ - make test_python
- make clean_python
- make clean
- make distcheck
--- a/Makefile
+++ b/Makefile
@@ -24,6 +24,9 @@
build_python:
cd python && ./setup.py build
+test_python:
+ cd python && ./setup.py develop && ./tests/run_all_tests
+
clean_python:
cd python && ./setup.py clean