We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent da912fb commit 44ec5a6Copy full SHA for 44ec5a6
1 file changed
test/genomicsqlite_smoke_test.py
@@ -59,11 +59,13 @@ def main():
59
for k in env_keys:
60
print(f" {k}={os.environ[k]}")
61
62
- print("sqlite3: ", end="")
+ print("sqlite3: v", end="")
63
import sqlite3
64
65
conn = sqlite3.connect(":memory:")
66
print(next(conn.execute("SELECT sqlite_version()"))[0])
67
+ sqlite_opts = list(row[0] for row in conn.execute("PRAGMA compile_options"))
68
+ print(f" {' '.join(sqlite_opts)}")
69
70
print("genomicsqlite: ", end="")
71
try:
0 commit comments