Call ds.close() in more places in tests

Refs #2692
This commit is contained in:
Simon Willison 2026-04-16 20:25:58 -07:00
commit d23b32c3e5
4 changed files with 5 additions and 14 deletions

View file

@ -23,6 +23,7 @@ async def datasette_with_plugin():
yield datasette
finally:
datasette.pm.unregister(name="undo")
datasette.close()
# -- end datasette_with_plugin_fixture --