summaryrefslogtreecommitdiff
path: root/test/engine/alltests.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/engine/alltests.py')
-rw-r--r--test/engine/alltests.py31
1 files changed, 0 insertions, 31 deletions
diff --git a/test/engine/alltests.py b/test/engine/alltests.py
deleted file mode 100644
index ed722aa3b..000000000
--- a/test/engine/alltests.py
+++ /dev/null
@@ -1,31 +0,0 @@
-import testenv; testenv.configure_for_tests()
-from testlib import sa_unittest as unittest
-
-
-def suite():
- modules_to_test = (
- # connectivity, execution
- 'engine.parseconnect',
- 'engine.pool',
- 'engine.bind',
- 'engine.reconnect',
- 'engine.execute',
- 'engine.metadata',
- 'engine.transaction',
-
- # schema/tables
- 'engine.reflection',
- 'engine.ddlevents',
-
- )
- 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())