From 43113825a409d4e0c7f52d471d0fb04ae680c173 Mon Sep 17 00:00:00 2001 From: Quentin Gliech Date: Mon, 28 Oct 2024 16:36:22 +0100 Subject: [PATCH] Retry tests once --- .github/workflows/ci.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 46d72f793..d2fe2b30d 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -317,7 +317,10 @@ jobs: DATABASE_URL: postgresql://postgres:postgres@localhost/postgres run: | ~/.cargo/bin/cargo-nextest nextest run --archive-file nextest-archive.tar.zst \ - --partition count:${{ matrix.partition }}/2 + --partition count:${{ matrix.partition }}/2 \ + --retries 1 + # --retries is a workaround for sqlx not playing nice with nextest + # Waiting for https://github.com/launchbadge/sqlx/pull/3334 syn2mas: name: Check syn2mas