From 2c59776069fbb87d0e4f57a90501e87958879f52 Mon Sep 17 00:00:00 2001 From: Paul Brossier Date: Sat, 30 Apr 2016 07:20:28 +0200 Subject: [PATCH] Makefile: invoke nose2 to run python tests --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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: -- 2.11.0