bpo-35773: Fix test_bdb on non-UTF-8 locales. (GH-21136)
(cherry picked from commit 94eee69e9b
)
Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
This commit is contained in:
parent
16e79a47ca
commit
fdf6872f38
|
@ -726,7 +726,7 @@ class StateTestCase(BaseTestCase):
|
|||
('line', 2, 'tfunc_import'), ('step', ),
|
||||
('line', 3, 'tfunc_import'), ('quit', ),
|
||||
]
|
||||
skip = ('importlib*', 'zipimport', TEST_MODULE)
|
||||
skip = ('importlib*', 'zipimport', 'encodings.*', TEST_MODULE)
|
||||
with TracerRun(self, skip=skip) as tracer:
|
||||
tracer.runcall(tfunc_import)
|
||||
|
||||
|
|
Loading…
Reference in New Issue