shithub: aubio

Download patch

ref: 2c59776069fbb87d0e4f57a90501e87958879f52
parent: 43de50df7aae26d952486bf7178412ad01ae5586
author: Paul Brossier <piem@piem.org>
date: Sat Apr 30 03:20:28 EDT 2016

Makefile: invoke nose2 to run python tests

--- a/Makefile
+++ b/Makefile
@@ -32,13 +32,13 @@
 
 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: