Add wasmtime to CI. (#212)

This commit is contained in:
Nuno Cruces
2025-01-07 16:31:12 +00:00
committed by GitHub
parent 31c5000875
commit 0c09dd89c2
18 changed files with 55 additions and 63 deletions

View File

@@ -130,8 +130,6 @@ func TestConn_SetInterrupt(t *testing.T) {
t.Fatal(err)
}
db.SetInterrupt(context.Background())
stmt, _, err := db.Prepare(`
WITH RECURSIVE
fibonacci (curr, next)
@@ -148,7 +146,6 @@ func TestConn_SetInterrupt(t *testing.T) {
}
defer stmt.Close()
db.SetInterrupt(ctx)
go func() {
time.Sleep(time.Millisecond)
cancel()