Skip to content

Commit 6c444a8

Browse files
sobolevnGlyphack
authored andcommitted
pythongh-110974: Make sure all test_zoneinfo tests are collected (pythonGH-110975)
Test classes from the test_zoneinfo submodule were overridden by test classes from the test_zoneinfo_property submodule with the same name.
1 parent ee93145 commit 6c444a8

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

Lib/test/test_zoneinfo/__init__.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
1-
from .test_zoneinfo import *
2-
from .test_zoneinfo_property import *
1+
import os
2+
from test.support import load_package_tests
3+
4+
def load_tests(*args):
5+
return load_package_tests(os.path.dirname(__file__), *args)

0 commit comments

Comments
 (0)