mirror of https://github.com/AMT-Cheif/drift.git
Fix modular example taking forever
This commit is contained in:
parent
7774fcb6df
commit
5115bc1525
|
@ -150,6 +150,7 @@ jobs:
|
||||||
name: "Integration tests"
|
name: "Integration tests"
|
||||||
needs: [setup]
|
needs: [setup]
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
timeout-minutes: 10
|
||||||
services:
|
services:
|
||||||
postgres:
|
postgres:
|
||||||
image: postgres
|
image: postgres
|
||||||
|
|
|
@ -9,4 +9,5 @@ void main() async {
|
||||||
|
|
||||||
await database.myAccessor
|
await database.myAccessor
|
||||||
.addUser(user: UsersCompanion.insert(name: 'first_user'));
|
.addUser(user: UsersCompanion.insert(name: 'first_user'));
|
||||||
|
await database.close();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue