1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
import testenv; testenv.configure_for_tests()
from testlib import sa_unittest as unittest
import inheritance.alltests as inheritance
import sharding.alltests as sharding
def suite():
modules_to_test = (
'orm.memusage',
'orm.attributes',
'orm.bind',
'orm.extendedattr',
'orm.instrumentation',
'orm.query',
'orm.lazy_relations',
'orm.eager_relations',
'orm.mapper',
'orm.expire',
'orm.selectable',
'orm.collection',
'orm.generative',
'orm.lazytest1',
'orm.assorted_eager',
'orm.naturalpks',
'orm.unitofwork',
'orm.session',
'orm.transaction',
'orm.scoping',
'orm.cascade',
'orm.relationships',
'orm.association',
'orm.merge',
'orm.pickled',
'orm.utils',
'orm.cycles',
'orm.compile',
'orm.manytomany',
'orm.onetoone',
'orm.dynamic',
'orm.deprecations',
)
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))
alltests.addTest(inheritance.suite())
alltests.addTest(sharding.suite())
return alltests
if __name__ == '__main__':
testenv.main(suite())
|