From e6ae643497803e51379f82881f4df2c734ef97f3 Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Sun, 9 Jan 2022 20:41:00 -0800 Subject: [PATCH] Did not need WAL after all, refs #364 --- tests/test_cli_insert.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/tests/test_cli_insert.py b/tests/test_cli_insert.py index 675e9eb..3ef6ffe 100644 --- a/tests/test_cli_insert.py +++ b/tests/test_cli_insert.py @@ -463,9 +463,6 @@ def test_insert_streaming_batch_size_1(db_path): # Streaming with --batch-size 1 should commit on each record # Can't use CliRunner().invoke() here bacuse we need to # run assertions in between writing to process stdin - # First, create the DB with WAL mode enabled - CliRunner().invoke(cli.cli, ["create-database", db_path, "--enable-wal"]) - # Now start streaming rows to insert --nl proc = subprocess.Popen( [ sys.executable,