Tests now use Datasette 1.0a25+

This commit is contained in:
Simon Willison 2026-02-26 15:05:43 -08:00
commit 9b03289e3a
2 changed files with 2 additions and 2 deletions

View file

@ -32,7 +32,7 @@ dev = [
"pytest-httpx",
"cogapp",
"pytest-mock",
"datasette>=1.0a2",
"datasette>=1.0a25",
]
[tool.uv.build-backend]

View file

@ -271,7 +271,7 @@ async def test_insert_against_datasette(
"insert into table1 (a, b, c) values (1, 2, 3), (4, 5, 6)"
)
token = ds.create_token("actor")
token = await ds.create_token("actor")
# These are useful with pytest --pdb to see what happened
datasette_requests = []