mirror of
https://github.com/sqlalchemy/sqlalchemy.git
synced 2026-06-03 06:19:59 -04:00
15 lines
408 B
Python
15 lines
408 B
Python
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())
|