- Timestamp:
- May 16, 2008, 8:20:03 PM (17 years ago)
- Branches:
- feature/autosink, feature/cnn, feature/cnn_org, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/pydocstrings, feature/timestretch, fix/ffmpeg5, master, pitchshift, sampler, timestretch, yinfft+
- Children:
- 42f1cf14
- Parents:
- e3e9368
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
tests/python/run_all_tests
re3e9368 r4ecfee9 5 5 from glob import glob 6 6 def list_of_test_files(path): 7 return [i.split('.')[0].replace('/','.') for i in glob(path)] 7 matches = glob(path) 8 if not matches: print "WARNING: no matches for %s" % path 9 return [i.split('.')[0].replace('/','.') for i in matches] 8 10 9 11 modules_to_test = [] 12 modules_to_test += ['localaubio'] 10 13 modules_to_test += list_of_test_files('src/*.py') 11 14 modules_to_test += list_of_test_files('src/*/*.py')
Note: See TracChangeset
for help on using the changeset viewer.