summaryrefslogtreecommitdiff
path: root/test/dialect/alltests.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/dialect/alltests.py')
-rw-r--r--test/dialect/alltests.py8
1 files changed, 5 insertions, 3 deletions
diff --git a/test/dialect/alltests.py b/test/dialect/alltests.py
index 3e34f737e..d40f0d6d4 100644
--- a/test/dialect/alltests.py
+++ b/test/dialect/alltests.py
@@ -1,16 +1,19 @@
-import testbase
+import testenv; testenv.configure_for_tests()
import unittest
+
def suite():
modules_to_test = (
'dialect.access',
'dialect.firebird',
'dialect.informix',
+ 'dialect.maxdb',
'dialect.mssql',
'dialect.mysql',
'dialect.oracle',
'dialect.postgres',
'dialect.sqlite',
+ 'dialect.sybase',
)
alltests = unittest.TestSuite()
for name in modules_to_test:
@@ -21,6 +24,5 @@ def suite():
return alltests
-
if __name__ == '__main__':
- testbase.main(suite())
+ testenv.main(suite())