summaryrefslogtreecommitdiff
path: root/test/alltests.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2007-03-15 18:11:05 +0000
committerMike Bayer <mike_mp@zzzcomputing.com>2007-03-15 18:11:05 +0000
commitc249066dbfdeebc35ba413f7a05b86281cf7a1a7 (patch)
tree4d6fd2af15d80e3ddac68ef0f1d9425a1c42fe64 /test/alltests.py
parent83244ec631e5b544d575337bd4fd7bb2e31e9ac3 (diff)
downloadsqlalchemy-c249066dbfdeebc35ba413f7a05b86281cf7a1a7.tar.gz
"alltests" runners call testbase.main(), which takes an optional suite,
so that exit code is propigated
Diffstat (limited to 'test/alltests.py')
-rw-r--r--test/alltests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/alltests.py b/test/alltests.py
index c60e73641..3fbace016 100644
--- a/test/alltests.py
+++ b/test/alltests.py
@@ -16,4 +16,4 @@ def suite():
if __name__ == '__main__':
- testbase.runTests(suite())
+ testbase.main(suite())