File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed
crates/pgt_workspace/src/workspace Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -166,7 +166,7 @@ jobs:
166166 -p 5432:5432 \
167167 postgres-plpgsql-check:latest
168168 # Wait for postgres to be ready
169- for i in {1..30}; do
169+ for _ in {1..30}; do
170170 if docker exec postgres pg_isready -U postgres; then
171171 break
172172 fi
Original file line number Diff line number Diff line change @@ -207,6 +207,7 @@ async fn correctly_ignores_files() {
207207 assert ! ( execute_statement_result. is_ok_and( |res| res == ExecuteStatementResult :: default ( ) ) ) ;
208208}
209209
210+ #[ cfg( all( test, not( target_os = "windows" ) ) ) ]
210211#[ sqlx:: test( migrator = "pgt_test_utils::MIGRATIONS" ) ]
211212async fn test_dedupe_diagnostics ( test_db : PgPool ) {
212213 let mut conf = PartialConfiguration :: init ( ) ;
You can’t perform that action at this time.
0 commit comments