From 69212a01cb9b7e99ebdfee7dc96ec84abde16e76 Mon Sep 17 00:00:00 2001 From: Paul Brossier Date: Fri, 22 Apr 2016 02:05:39 +0200 Subject: [PATCH] Makefile: add test_python target, added to .travis.yml --- .travis.yml | 1 + Makefile | 3 +++ 2 files changed, 4 insertions(+) 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 -- 2.11.0