summaryrefslogtreecommitdiff
path: root/test/engine/alltests.py
diff options
context:
space:
mode:
authorJason Kirtland <jek@discorporate.us>2008-01-12 22:03:42 +0000
committerJason Kirtland <jek@discorporate.us>2008-01-12 22:03:42 +0000
commit17d3c8764e020379e54053bca0b0a2bc71d48aa0 (patch)
tree0b46f1ddc57292b8f5bfbc28ab1679230f63e426 /test/engine/alltests.py
parentc194962019d1bc7322e20b82c33aa1bab3bc2a28 (diff)
downloadsqlalchemy-17d3c8764e020379e54053bca0b0a2bc71d48aa0.tar.gz
- testbase is gone, replaced by testenv
- Importing testenv has no side effects- explicit functions provide similar behavior to the old immediate behavior of testbase - testing.db has the configured db - Fixed up the perf/* scripts
Diffstat (limited to 'test/engine/alltests.py')
-rw-r--r--test/engine/alltests.py13
1 files changed, 6 insertions, 7 deletions
diff --git a/test/engine/alltests.py b/test/engine/alltests.py
index a34a82ed7..4e7629298 100644
--- a/test/engine/alltests.py
+++ b/test/engine/alltests.py
@@ -1,20 +1,20 @@
-import testbase
+import testenv; testenv.configure_for_tests()
import unittest
def suite():
modules_to_test = (
# connectivity, execution
- 'engine.parseconnect',
- 'engine.pool',
+ 'engine.parseconnect',
+ 'engine.pool',
'engine.bind',
'engine.reconnect',
'engine.execute',
'engine.metadata',
'engine.transaction',
-
+
# schema/tables
- 'engine.reflection',
+ 'engine.reflection',
)
alltests = unittest.TestSuite()
@@ -26,6 +26,5 @@ def suite():
return alltests
-
if __name__ == '__main__':
- testbase.main(suite())
+ testenv.main(suite())