Home
last modified time | relevance | path

Searched refs:load_tests (Results 1 – 25 of 62) sorted by relevance

123

/third_party/python/Lib/unittest/test/
Dtest_loader.py188 def load_tests(loader, tests, pattern): function
192 m.load_tests = load_tests
215 def load_tests(loader, tests, pattern): function
219 m.load_tests = load_tests
244 def load_tests(loader, tests, pattern): function
248 m.load_tests = load_tests
272 def load_tests(loader, tests, pattern): function
276 m.load_tests = load_tests
301 def load_tests(loader, tests, pattern): function
305 m.load_tests = load_tests
[all …]
Dtest_discovery.py167 def load_tests(loader, tests, pattern): function
170 self.load_tests = load_tests
241 def load_tests(loader, tests, pattern): function
244 self.load_tests = load_tests
326 def load_tests(loader, tests, pattern): function
330 def load_tests(loader, tests, pattern): function
339 self.load_tests = load_tests
442 def load_tests(self, loader, tests, pattern): member in TestDiscovery.test_discover_start_dir_is_package_calls_package_load_tests.Module
/third_party/python/Lib/test/
Dtest_ctypes.py7 load_tests = ctypes_test.load_tests variable
Dtest_lib2to3.py6 load_tests = import_fresh_module('lib2to3.tests', fresh=['lib2to3']).load_tests variable
/third_party/python/Lib/unittest/
Dloader.py126 load_tests = getattr(module, 'load_tests', None)
128 if load_tests is not None:
130 return load_tests(self, tests, pattern)
466 load_tests = None
479 load_tests = getattr(package, 'load_tests', None)
484 if load_tests is not None:
/third_party/python/Lib/test/test_importlib/builtin/
D__main__.py1 from . import load_tests
D__init__.py4 def load_tests(*args): function
/third_party/python/Lib/test/test_importlib/import_/
D__main__.py1 from . import load_tests
D__init__.py4 def load_tests(*args): function
/third_party/python/Lib/test/test_importlib/source/
D__main__.py1 from . import load_tests
D__init__.py4 def load_tests(*args): function
/third_party/python/Lib/test/test_importlib/frozen/
D__main__.py1 from . import load_tests
D__init__.py4 def load_tests(*args): function
/third_party/python/Lib/test/test_peg_generator/
D__main__.py2 from . import load_tests
D__init__.py6 def load_tests(*args): function
/third_party/python/Lib/test/test_asyncio/
D__main__.py1 from . import load_tests
/third_party/python/Lib/lib2to3/tests/
D__main__.py1 from . import load_tests
D__init__.py7 def load_tests(*args): function
/third_party/python/Lib/test/test_importlib/extension/
D__main__.py1 from . import load_tests
D__init__.py4 def load_tests(*args): function
/third_party/python/Lib/test/test_importlib/
D__main__.py1 from . import load_tests
/third_party/python/Lib/ctypes/test/
D__main__.py1 from ctypes.test import load_tests
/third_party/python/Lib/test/test_json/
D__main__.py2 from test.test_json import load_tests
/third_party/python/Lib/test/test_tools/
D__main__.py1 from test.test_tools import load_tests
/third_party/python/Lib/test/test_email/
D__main__.py1 from test.test_email import load_tests

123