From 24e1db6683700e48919b7b750e4605bde1a581f2 Mon Sep 17 00:00:00 2001 From: Rob Taylor Date: Mon, 30 Sep 2024 23:27:25 -0400 Subject: [PATCH] Remove retying of running tests as no longer needed --- .github/workflows/execute-tests.yml | 15 +++------------ 1 file changed, 3 insertions(+), 12 deletions(-) diff --git a/.github/workflows/execute-tests.yml b/.github/workflows/execute-tests.yml index c8f0581e..d1990ab9 100644 --- a/.github/workflows/execute-tests.yml +++ b/.github/workflows/execute-tests.yml @@ -64,18 +64,9 @@ jobs: - name: Install project dependencies run: make install - # Some tests fails intermittently, likely due to the public runners being - # very slow. Especially any client/server tests seems to be problematic. - # This is a simple attempt to re-run the tests up to three times if they - # fail. Does not add any execution time if successful. - - uses: Wandalen/wretry.action@v1.4.4 - name: Run tests - with: - command: make test - current_path: ${{ inputs.workpath }} - attempt_limit: 5 - attempt_delay: 2000 - + - name: Run tests + run: make test + - name: Upload coverage uses: codecov/codecov-action@v4 if: ${{ inputs.os == 'ubuntu-latest' && matrix.python-version == '3.9' && github.repository == 'doorstop-dev/doorstop' }}