Skip to content

Commit 3bd8ef8

Browse files
committed
progress
1 parent cd7adc3 commit 3bd8ef8

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.github/workflows/pull_request.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

crates/pgt_workspace/src/workspace/server.tests.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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")]
211212
async fn test_dedupe_diagnostics(test_db: PgPool) {
212213
let mut conf = PartialConfiguration::init();

0 commit comments

Comments
 (0)