From 67401948f25997823da79c82d683e29c5e9cdc2a Mon Sep 17 00:00:00 2001 From: Kristoffer Dalby Date: Thu, 16 Jan 2025 10:19:44 +0100 Subject: [PATCH] remove retry Test if there is a large amount of flaky test, goal would be to mark them individually with: tailscale.com/cmd/testwrapper/flakytest to encourage fixing them instead of leaving them broken. This might be pointless as we might be flaking due to gh actions low resources. Signed-off-by: Kristoffer Dalby --- .github/workflows/test-integration.yaml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/test-integration.yaml b/.github/workflows/test-integration.yaml index 83db1c33..2818d6ab 100644 --- a/.github/workflows/test-integration.yaml +++ b/.github/workflows/test-integration.yaml @@ -118,13 +118,10 @@ jobs: if: steps.changed-files.outputs.files == 'true' continue-on-error: true - name: Run Integration Test - uses: Wandalen/wretry.action@master if: steps.changed-files.outputs.files == 'true' env: USE_POSTGRES: ${{ matrix.database == 'postgres' && '1' || '0' }} - with: - attempt_limit: 5 - command: | + run: | nix develop --command -- docker run \ --tty --rm \ --volume ~/.cache/hs-integration-go:/go \