Files
sqlalchemy/test/base/alltests.py
T
Mike Bayer bcc4f63a07 removed historyarray test
ForeignKey is more intelligent about locating the parent table it represents, in the case that
its attached to a CompoundSelect column which has multiple "originals", some of which might not be schema.Columns
2006-06-16 19:02:10 +00:00

21 lines
491 B
Python

import testbase
import unittest
def suite():
modules_to_test = (
# core utilities
'base.attributes',
'base.dependency',
)
alltests = unittest.TestSuite()
for name in modules_to_test:
mod = __import__(name)
for token in name.split('.')[1:]:
mod = getattr(mod, token)
alltests.addTest(unittest.findTestCases(mod, suiteClass=None))
return alltests
if __name__ == '__main__':
testbase.runTests(suite())