From 0e42444866fc6e2d45b77471badda2524e95d412 Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Fri, 16 Dec 2022 09:51:29 -0800 Subject: [PATCH] invoke_startup() inside ds_client fixture, refs #1959 --- tests/conftest.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/conftest.py b/tests/conftest.py index 197992c5..44c44f87 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -61,6 +61,7 @@ async def ds_client(): conn.execute(sql, params) await db.execute_write_fn(prepare) + await ds.invoke_startup() _ds_client = ds.client return _ds_client