From: Paul Brossier Date: Fri, 22 Apr 2016 00:05:39 +0000 (+0200) Subject: Makefile: add test_python target, added to .travis.yml X-Git-Tag: 0.4.4~300^2~265 X-Git-Url: https://git.aubio.org/?a=commitdiff_plain;h=69212a01cb9b7e99ebdfee7dc96ec84abde16e76;p=aubio.git Makefile: add test_python target, added to .travis.yml --- diff --git a/.travis.yml b/.travis.yml index dfe89cf8..defd1c99 100644 --- a/.travis.yml +++ b/.travis.yml @@ -82,6 +82,7 @@ addons: script: - make build - make build_python + - make test_python - make clean_python - make clean - make distcheck diff --git a/Makefile b/Makefile index 1b58562c..64f3211f 100644 --- a/Makefile +++ b/Makefile @@ -24,6 +24,9 @@ build: configure 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