summaryrefslogtreecommitdiff
path: root/test/alltests.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2005-10-22 03:53:35 +0000
committerMike Bayer <mike_mp@zzzcomputing.com>2005-10-22 03:53:35 +0000
commit4d80f493e4ed2b678f6fe43c09f1a445bbd232a7 (patch)
tree46d3664b85ae14108ebcbb74390841d6471a4b38 /test/alltests.py
parent574e11de5e315034a6ecb5c96007ff7ec76f9aa0 (diff)
downloadsqlalchemy-4d80f493e4ed2b678f6fe43c09f1a445bbd232a7.tar.gz
Diffstat (limited to 'test/alltests.py')
-rw-r--r--test/alltests.py8
1 files changed, 2 insertions, 6 deletions
diff --git a/test/alltests.py b/test/alltests.py
index cee36d0f0..167bef9ea 100644
--- a/test/alltests.py
+++ b/test/alltests.py
@@ -3,12 +3,8 @@ import testbase
testbase.echo = False
-def suite():
- modules_to_test = ('attributes', 'historyarray', 'pool', 'engines', 'query', 'types', 'mapper', 'objectstore')
- alltests = unittest.TestSuite()
- for module in map(__import__, modules_to_test):
- alltests.addTest(unittest.findTestCases(module))
- return alltests
+
+modules_to_test = ('attributes', 'historyarray', 'pool', 'engines', 'query', 'types', 'mapper', 'objectstore')
if __name__ == '__main__':
testbase.runTests(suite())