testsuite.py

changeset 42
be50d98d3668
parent 32
75f44d3063da
child 45
7a7c237a1717
equal deleted inserted replaced
41:4d87bc126368 42:be50d98d3668
22 Finds all test modules and yields their names. 22 Finds all test modules and yields their names.
23 ''' 23 '''
24 from pkgutil import walk_packages 24 from pkgutil import walk_packages
25 import tests 25 import tests
26 yield from sorted( 26 yield from sorted(
27 'tests.' + result.name 27 'tests.' + result[1]
28 for result in walk_packages(tests.__path__) 28 for result in walk_packages(tests.__path__)
29 ) 29 )
30 30
31 def do_manifest_integrity_checks(test_suite, module): 31 def do_manifest_integrity_checks(test_suite, module):
32 ''' 32 '''

mercurial