Changes in / [82c588a:6d4ec49]
- Location:
- tests/python
- Files:
-
- 1 deleted
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
tests/python/run_all_tests
r82c588a r6d4ec49 11 11 import unittest 12 12 13 from glob import glob 14 modules_to_test = [i.split('.')[0] for i in glob('*.py')] 13 modules_to_test = ['aubiomodule', 'fvec', 'cvec'] 15 14 16 15 if __name__ == '__main__': 17 for module in modules_to_test: 18 if module != 'all_tests': # (not actually needed) 19 exec('from %s import *' % module) 16 for module in modules_to_test: exec('from %s import *' % module) 20 17 unittest.main()
Note: See TracChangeset
for help on using the changeset viewer.