From: Paul Brossier Date: Sat, 30 Apr 2016 05:20:28 +0000 (+0200) Subject: Makefile: invoke nose2 to run python tests X-Git-Tag: 0.4.4~300^2~163 X-Git-Url: https://git.aubio.org/?a=commitdiff_plain;h=2c59776069fbb87d0e4f57a90501e87958879f52;p=aubio.git Makefile: invoke nose2 to run python tests --- diff --git a/Makefile b/Makefile index af85bb53..73af21c7 100644 --- a/Makefile +++ b/Makefile @@ -32,13 +32,13 @@ build_python: test_python: cd python && pip install -v . - LD_LIBRARY_PATH=$(PWD)/build/src python/tests/run_all_tests --verbose + cd python && LD_LIBRARY_PATH=$(PWD)/build/src nose2 --verbose cd python && pip uninstall -y -v aubio test_python_osx: cd python && pip install --user -v . [ -f build/src/libaubio.[0-9].dylib ] && ( mkdir -p ~/lib && cp -prv build/src/libaubio.4.dylib ~/lib ) || true - ./python/tests/run_all_tests --verbose + cd python && nose2 --verbose cd python && pip uninstall -y -v aubio clean_python: