From: Paul Brossier Date: Mon, 17 Sep 2007 00:34:47 +0000 (+0200) Subject: python/test: added simple python unit test model X-Git-Tag: bzr2git~516 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=b29565c132fa44d1e8de4f2b246e25b2383587dd;p=aubio.git python/test: added simple python unit test model --- diff --git a/python/test/all_tests.py b/python/test/all_tests.py index e0bb247f..4024f3f6 100755 --- a/python/test/all_tests.py +++ b/python/test/all_tests.py @@ -8,7 +8,7 @@ sys.path.append(os.path.join('..','aubio','.libs')) import unittest -modules_to_test = ('aubiomodule') +modules_to_test = ['aubiomodule'] if __name__ == '__main__': for module in modules_to_test: exec('from %s import *' % module)