Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: 8623e68ea856830e084839e1d726c1f5be727203 authored by Ɓukasz Langa on 10 February 2020, 19:08:24 UTC
Python 3.8.2rc1
Tip revision: 8623e68
__init__.py
import os
from test.support import load_package_tests, import_module

# Skip tests if we don't have concurrent.futures.
import_module('concurrent.futures')

def load_tests(*args):
    return load_package_tests(os.path.dirname(__file__), *args)
back to top