We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9eac5a4 commit c0f241bCopy full SHA for c0f241b
.github/workflows/ci.yml
@@ -83,6 +83,17 @@ jobs:
83
test_on_windows:
84
name: Test on Windows
85
runs-on: windows-latest
86
+ env:
87
+ TEST_DB_URL: postgres://postgres:testpass@localhost:5432/postgres
88
+ services:
89
+ postgres:
90
+ image: postgres:16-alpine
91
92
+ POSTGRES_USER: postgres
93
+ POSTGRES_PASSWORD: testpass
94
+ POSTGRES_DB: postgres
95
+ ports:
96
+ - 5432:5432
97
steps:
98
- name: Checkout the source code
99
uses: actions/checkout@v4
database/src/tests/mod.rs
@@ -98,6 +98,6 @@ where
let ctx = f(ctx).await.expect("Test failed");
ctx.finish().await;
100
} else {
101
- panic!("Skipping test because TEST_DB_URL was not passed");
+ panic!("Aborting; `TEST_DB_URL` was not passed");
102
}
103
0 commit comments