Files
sqlalchemy/test/alltests.py
T
Mike Bayer 6f7ae3c8b6 added manytomany to alltests
name stuff in manytomany
columns test works against generic Types instead of ANSI-named types
2005-12-03 05:16:25 +00:00

16 lines
531 B
Python

import testbase
import unittest
testbase.echo = False
def suite():
modules_to_test = ('attributes', 'historyarray', 'pool', 'engines', 'query', 'columns', 'sequence', 'select', 'types', 'mapper', 'objectstore', 'manytomany', 'dependency')
# modules_to_test = ('engines', 'mapper')
alltests = unittest.TestSuite()
for module in map(__import__, modules_to_test):
alltests.addTest(unittest.findTestCases(module, suiteClass=None))
return alltests
if __name__ == '__main__':
testbase.runTests(suite())