Changeset 36fa6cb for tests/python
- Timestamp:
- Oct 30, 2007, 3:40:35 AM (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:
- 4aad0dc
- Parents:
- 6427e6d (diff), 82c588a (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - Location:
- tests/python
- Files:
-
- 1 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
tests/python/run_all_tests
r6427e6d r36fa6cb 11 11 import unittest 12 12 13 modules_to_test = ['aubiomodule', 'fvec', 'cvec'] 13 from glob import glob 14 modules_to_test = [i.split('.')[0] for i in glob('*.py')] 14 15 15 16 if __name__ == '__main__': 16 for module in modules_to_test: exec('from %s import *' % module) 17 for module in modules_to_test: 18 if module != 'all_tests': # (not actually needed) 19 exec('from %s import *' % module) 17 20 unittest.main()
Note: See TracChangeset
for help on using the changeset viewer.