Skip to content

Commit 5588bb4

Browse files
committed
gh-127146: Skip test_open_undecodable_uri on Emscripten
PR #136326 removed the Emscripten skip for this file but it is still broken.
1 parent f519918 commit 5588bb4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Lib/test/test_sqlite3/test_dbapi.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
import warnings
3232

3333
from test.support import (
34-
SHORT_TIMEOUT, check_disallow_instantiation, requires_subprocess
34+
SHORT_TIMEOUT, check_disallow_instantiation, requires_subprocess, is_emscripten
3535
)
3636
from test.support import gc_collect
3737
from test.support import threading_helper, import_helper
@@ -694,6 +694,7 @@ def test_open_uri_readonly(self):
694694
cx.execute(self._sql)
695695

696696
@unittest.skipIf(sys.platform == "win32", "skipped on Windows")
697+
@unittest.skipIf(is_emscripten, "not supported on Emscripten")
697698
def test_open_undecodable_uri(self):
698699
path = self.get_undecodable_path()
699700
self.addCleanup(unlink, path)

0 commit comments

Comments
 (0)