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' }}