diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2005-10-22 03:53:35 +0000 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2005-10-22 03:53:35 +0000 |
commit | 4d80f493e4ed2b678f6fe43c09f1a445bbd232a7 (patch) | |
tree | 46d3664b85ae14108ebcbb74390841d6471a4b38 /test/alltests.py | |
parent | 574e11de5e315034a6ecb5c96007ff7ec76f9aa0 (diff) | |
download | sqlalchemy-4d80f493e4ed2b678f6fe43c09f1a445bbd232a7.tar.gz |
Diffstat (limited to 'test/alltests.py')
-rw-r--r-- | test/alltests.py | 8 |
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()) |