Python code coverage for Lib/test/test_asyncio/__init__.py
# | count | content |
---|---|---|
1 | n/a | import os |
2 | n/a | from test.support import load_package_tests, import_module |
3 | n/a | |
4 | n/a | # Skip tests if we don't have threading. |
5 | n/a | import_module('threading') |
6 | n/a | # Skip tests if we don't have concurrent.futures. |
7 | n/a | import_module('concurrent.futures') |
8 | n/a | |
9 | n/a | def load_tests(*args): |
10 | n/a | return load_package_tests(os.path.dirname(__file__), *args) |