diff options
author | Benjamin Dauvergne <bdauvergne@entrouvert.com> | 2011-01-04 21:32:56 +0100 |
---|---|---|
committer | Benjamin Dauvergne <bdauvergne@entrouvert.com> | 2011-01-04 21:32:56 +0100 |
commit | 20d2357451f420a146fa37e63df4e6801e6a9e89 (patch) | |
tree | 61fb8af91fbf827cef783f0b3746cb8986eca089 /bindings/python/tests | |
parent | f35901fdd2bd1f381e9bac90f3ef4262871593f4 (diff) | |
parent | 346071a6300032f17fcda345163bd5c444fb3c05 (diff) | |
download | lasso-20d2357451f420a146fa37e63df4e6801e6a9e89.tar.gz lasso-20d2357451f420a146fa37e63df4e6801e6a9e89.tar.xz lasso-20d2357451f420a146fa37e63df4e6801e6a9e89.zip |
Merge branch 'hotfixes-2.3.5'
Diffstat (limited to 'bindings/python/tests')
-rwxr-xr-x | bindings/python/tests/binding_tests.py | 3 | ||||
-rwxr-xr-x | bindings/python/tests/idwsf1_tests.py | 3 | ||||
-rwxr-xr-x | bindings/python/tests/idwsf2_tests.py | 3 |
3 files changed, 9 insertions, 0 deletions
diff --git a/bindings/python/tests/binding_tests.py b/bindings/python/tests/binding_tests.py index 89039d2e..ba732f37 100755 --- a/bindings/python/tests/binding_tests.py +++ b/bindings/python/tests/binding_tests.py @@ -28,6 +28,9 @@ import unittest import sys import os +import logging + +logging.basicConfig() if not '..' in sys.path: sys.path.insert(0, '..') diff --git a/bindings/python/tests/idwsf1_tests.py b/bindings/python/tests/idwsf1_tests.py index cf47f46a..9ace6200 100755 --- a/bindings/python/tests/idwsf1_tests.py +++ b/bindings/python/tests/idwsf1_tests.py @@ -25,6 +25,9 @@ import os import unittest import sys +import logging + +logging.basicConfig() if not '..' in sys.path: sys.path.insert(0, '..') diff --git a/bindings/python/tests/idwsf2_tests.py b/bindings/python/tests/idwsf2_tests.py index cadb605f..6d43a428 100755 --- a/bindings/python/tests/idwsf2_tests.py +++ b/bindings/python/tests/idwsf2_tests.py @@ -29,6 +29,9 @@ import os import unittest import sys from StringIO import StringIO +import logging + +logging.basicConfig() if not '..' in sys.path: sys.path.insert(0, '..') |