Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • tests/python/run_all_tests

    r974dddc r031b1f9  
    11#! /usr/bin/python
     2
     3# add ${src}/python and ${src}/python/aubio/.libs to python path
     4# so the script is runnable from a compiled source tree.
     5import sys, os
     6
     7cur_dir = os.path.dirname(sys.argv[0])
     8sys.path.append(os.path.join(cur_dir,'..','..','python'))
     9sys.path.append(os.path.join(cur_dir,'..','..','python','aubio','.libs'))
    210
    311import unittest
     
    715  return [i.split('.')[0].replace('/','.') for i in glob(path)]
    816
    9 modules_to_test  = []
    10 modules_to_test += list_of_test_files('src/*.py')
    11 modules_to_test += list_of_test_files('src/*/*.py')
     17modules_to_test  = list_of_test_files('*.py')
    1218modules_to_test += list_of_test_files('examples/aubio*.py')
    13 modules_to_test += list_of_test_files('*.py')
    1419
    1520if __name__ == '__main__':
Note: See TracChangeset for help on using the changeset viewer.