Changeset 36fa6cb


Ignore:
Timestamp:
Oct 30, 2007, 3:40:35 AM (16 years ago)
Author:
Paul Brossier <piem@piem.org>
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.
Message:

merge with pitchdetection test

Location:
tests/python
Files:
1 added
1 edited

Legend:

Unmodified
Added
Removed
  • tests/python/run_all_tests

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