summaryrefslogtreecommitdiff
path: root/test/alltests.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2005-09-24 01:51:22 +0000
committerMike Bayer <mike_mp@zzzcomputing.com>2005-09-24 01:51:22 +0000
commit62a8049a0d7cc6882a00a2b1e7d403bdb0fda3ba (patch)
tree9de6eb5848095e5ac380c842c698262c55740d5a /test/alltests.py
parent2c4e1017a4e69737e7c83e846ac4a10d4ce87be4 (diff)
downloadsqlalchemy-62a8049a0d7cc6882a00a2b1e7d403bdb0fda3ba.tar.gz
Diffstat (limited to 'test/alltests.py')
-rw-r--r--test/alltests.py14
1 files changed, 14 insertions, 0 deletions
diff --git a/test/alltests.py b/test/alltests.py
new file mode 100644
index 000000000..cee36d0f0
--- /dev/null
+++ b/test/alltests.py
@@ -0,0 +1,14 @@
+import unittest
+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
+
+if __name__ == '__main__':
+ testbase.runTests(suite())