Skip to content

Commit 94eee69

Browse files
bpo-35773: Fix test_bdb on non-UTF-8 locales. (GH-21136)
1 parent f7ba40b commit 94eee69

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/test/test_bdb.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -726,7 +726,7 @@ def main():
726726
('line', 2, 'tfunc_import'), ('step', ),
727727
('line', 3, 'tfunc_import'), ('quit', ),
728728
]
729-
skip = ('importlib*', 'zipimport', TEST_MODULE)
729+
skip = ('importlib*', 'zipimport', 'encodings.*', TEST_MODULE)
730730
with TracerRun(self, skip=skip) as tracer:
731731
tracer.runcall(tfunc_import)
732732

0 commit comments

Comments
 (0)