-
Notifications
You must be signed in to change notification settings - Fork 131
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove retying of running tests as no longer needed
- Loading branch information
Showing
1 changed file
with
3 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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/[email protected] | ||
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' }} | ||
|