Enable pretty mode in shell by default

Fixes #929
This commit is contained in:
Pekka Enberg 2025-03-22 07:59:03 +02:00
parent 52ccc36061
commit 7832ae22df
5 changed files with 7 additions and 4 deletions

View file

@ -2,7 +2,7 @@
import os
from test_limbo_cli import TestLimboShell
sqlite_exec = "./target/debug/limbo"
sqlite_exec = "./scripts/limbo-sqlite3"
sqlite_flags = os.getenv("SQLITE_FLAGS", "-q").split(" ")
test_data = """CREATE TABLE numbers ( id INTEGER PRIMARY KEY, value FLOAT NOT NULL);

View file

@ -104,7 +104,7 @@ class TestLimboShell:
flags="",
):
if exec_name is None:
exec_name = "./target/debug/limbo"
exec_name = "./scripts/limbo-sqlite3"
if flags == "":
flags = "-q"
self.config = ShellConfig(exe_name=exec_name, flags=flags)