Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion Lib/test/test_sqlite3/test_dbapi.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
import warnings

from test.support import (
SHORT_TIMEOUT, check_disallow_instantiation, requires_subprocess
SHORT_TIMEOUT, check_disallow_instantiation, requires_subprocess, is_emscripten
)
from test.support import gc_collect
from test.support import threading_helper, import_helper
Expand Down Expand Up @@ -694,6 +694,7 @@ def test_open_uri_readonly(self):
cx.execute(self._sql)

@unittest.skipIf(sys.platform == "win32", "skipped on Windows")
@unittest.skipIf(is_emscripten, "not supported on Emscripten")
def test_open_undecodable_uri(self):
path = self.get_undecodable_path()
self.addCleanup(unlink, path)
Expand Down
Loading