Changes in / [82c588a:6d4ec49]


Ignore:
Location:
tests/python
Files:
1 deleted
1 edited

Legend:

Unmodified
Added
Removed
  • tests/python/run_all_tests

    r82c588a r6d4ec49  
    1111import unittest
    1212
    13 from glob import glob
    14 modules_to_test = [i.split('.')[0] for i in glob('*.py')]
     13modules_to_test = ['aubiomodule', 'fvec', 'cvec']
    1514
    1615if __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)
    2017  unittest.main()
Note: See TracChangeset for help on using the changeset viewer.