We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8d2d067 commit 7cafe2aCopy full SHA for 7cafe2a
docker/tests/modules-check.py
@@ -10,6 +10,11 @@ def test_sqlite3(self):
10
print(f"{sqlite3.sqlite_version=}", end=" ", flush=True)
11
assert sqlite3.sqlite_version_info[0:2] >= (3, 50)
12
13
+ # When the extension is not installed, it raises:
14
+ # sqlite3.OperationalError: no such module: fts5
15
+ conn = sqlite3.connect(":memory:")
16
+ conn.execute("create virtual table fts5test using fts5 (data);")
17
+
18
def test_tkinter(self):
19
# Make sure tkinter module can be loaded properly
20
import tkinter as tk
0 commit comments