Skip to content

Commit

Permalink
bpo-35773: Fix test_bdb on non-UTF-8 locales. (pythonGH-21136)
Browse files Browse the repository at this point in the history
  • Loading branch information
serhiy-storchaka authored Jun 25, 2020
1 parent f7ba40b commit 94eee69
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Lib/test/test_bdb.py
Original file line number Diff line number Diff line change
Expand Up @@ -726,7 +726,7 @@ def main():
('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)

Expand Down

0 comments on commit 94eee69

Please sign in to comment.