8000 gh-110974: Make sure all test_zoneinfo tests are collected (GH-110975) · python/cpython@86276fe · GitHub
[go: up one dir, main page]

Skip to content

Commit 86276fe

Browse files
authored
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.
1 parent 7237fb5 commit 86276fe

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

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)
0