ref: 4ecfee960a1cd5c60f223226b8edb69ffcf62529
parent: e3e93689db328a7f481ddd119330768271a16d5d
author: Paul Brossier <piem@piem.org>
date: Fri May 16 16:20:03 EDT 2008
tests/python/run_all_tests: add a warning if list_of_test_files returns no matches, localaubio first
--- a/tests/python/run_all_tests
+++ b/tests/python/run_all_tests
@@ -4,9 +4,12 @@
from glob import glob
def list_of_test_files(path):
- return [i.split('.')[0].replace('/','.') for i in glob(path)]
+ matches = glob(path)
+ if not matches: print "WARNING: no matches for %s" % path
+ return [i.split('.')[0].replace('/','.') for i in matches]
modules_to_test = []
+modules_to_test += ['localaubio']
modules_to_test += list_of_test_files('src/*.py')
modules_to_test += list_of_test_files('src/*/*.py')
modules_to_test += list_of_test_files('examples/aubio*.py')