mirror of
https://github.com/sqlalchemy/sqlalchemy.git
synced 2026-05-13 04:07:20 -04:00
This commit is contained in:
@@ -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())
|
||||
Reference in New Issue
Block a user