ยปCore Development>Code coverage>Lib/test/test_asyncio/__init__.py

Python code coverage for Lib/test/test_asyncio/__init__.py

#countcontent
1n/aimport os
2n/afrom test.support import load_package_tests, import_module
3n/a
4n/a# Skip tests if we don't have threading.
5n/aimport_module('threading')
6n/a# Skip tests if we don't have concurrent.futures.
7n/aimport_module('concurrent.futures')
8n/a
9n/adef load_tests(*args):
10n/a return load_package_tests(os.path.dirname(__file__), *args)