Skip to content

Commit c39e475

Browse files
committed
Improve test stability.
1 parent 8b40681 commit c39e475

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

Diff for: .github/workflows/test.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ jobs:
3030
test:
3131
runs-on: ubuntu-latest
3232
strategy:
33+
fail-fast: false
3334
matrix:
3435
include:
3536
- sqlite_version: "3440200"

Diff for: packages/sqlite_async/test/watch_test.dart

+2-1
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ void main() {
258258
final db = await testUtils.setupDatabase(path: path);
259259
await createTables(db);
260260

261-
const baseTime = 10;
261+
const baseTime = 20;
262262

263263
const throttleDuration = Duration(milliseconds: baseTime);
264264
// delay must be bigger than throttleDuration, and bigger
@@ -300,6 +300,7 @@ void main() {
300300
// [0, 2, 2]: The watch is triggered during the transaction,
301301
// but executes after the transaction (single connection).
302302
// [0]: No updates triggered.
303+
// [2, 2]: Timing issue?
303304
});
304305
});
305306
}

0 commit comments

Comments
 (0)