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.py28
1 files changed, 0 insertions, 28 deletions
diff --git a/test/dialect/alltests.py b/test/dialect/alltests.py
deleted file mode 100644
index 0defb6a15..000000000
--- a/test/dialect/alltests.py
+++ /dev/null
@@ -1,28 +0,0 @@
-import testenv; testenv.configure_for_tests()
-from testlib import sa_unittest as 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:
- mod = __import__(name)
- for token in name.split('.')[1:]:
- mod = getattr(mod, token)
- alltests.addTest(unittest.findTestCases(mod, suiteClass=None))
- return alltests
-
-
-if __name__ == '__main__':
- testenv.main(suite())