diff options
Diffstat (limited to 'python/tests/tests.py')
-rwxr-xr-x | python/tests/tests.py | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/python/tests/tests.py b/python/tests/tests.py index e5ea1f62..d4bd42dd 100755 --- a/python/tests/tests.py +++ b/python/tests/tests.py @@ -41,12 +41,16 @@ if not '../.libs' in sys.path: sys.path.insert(0, '../.libs') -testSuites = ( +testSuites = [ 'binding_tests', 'profiles_tests', 'errorchecking_tests', - 'idwsf2_tests' - ) + ] + +import lasso +if lasso.WSF_SUPPORT: + testSuites.append('idwsf1_tests') + testSuites.append('idwsf2_tests') # Parse command line options. |