]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
(no commit message)
authorMike Bayer <mike_mp@zzzcomputing.com>
Sat, 24 Sep 2005 01:51:22 +0000 (01:51 +0000)
committerMike Bayer <mike_mp@zzzcomputing.com>
Sat, 24 Sep 2005 01:51:22 +0000 (01:51 +0000)
test/alltests.py [new file with mode: 0644]

diff --git a/test/alltests.py b/test/alltests.py
new file mode 100644 (file)
index 0000000..cee36d0
--- /dev/null
@@ -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())