tests/src/io/test-source.c: default to source samplerate, add hop_size option, print...
[aubio.git] / tests / python / run_all_tests
index f16122439ace16f7b5a1c13d60c50cfc8648c185..68caefb2ff6f45cd9cda3dfc49fdde9fe853f0bb 100755 (executable)
@@ -4,9 +4,12 @@ import unittest
 
 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')