gh-110974: Make sure all test_zoneinfo tests are collected (GH-110975)

Test classes from the test_zoneinfo submodule were overridden by
test classes from the test_zoneinfo_property submodule with the same name.
This commit is contained in:
Nikita Sobolev 2023-10-21 14:26:03 +03:00 committed by GitHub
parent 7237fb578d
commit 86276fe4f8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,2 +1,5 @@
from .test_zoneinfo import *
from .test_zoneinfo_property import *
import os
from test.support import load_package_tests
def load_tests(*args):
return load_package_tests(os.path.dirname(__file__), *args)