From 2a65b0ee2eda609d65e5725313b9e467e6de88fd Mon Sep 17 00:00:00 2001 From: Marc Alexander Date: Mon, 6 Oct 2025 17:06:30 +0200 Subject: [PATCH] [ticket/17555] Use retries for windows tests PHPBB-17555 --- .github/workflows/tests.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 3b4a08a8f9..b6e7f1fe9f 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -619,5 +619,8 @@ jobs: Set-MpPreference -ExclusionPath "${env:PGDATA}" # Exclude PGDATA directory from Windows Defender - name: Run unit tests - run: | - phpBB/vendor/bin/phpunit --configuration .github/phpunit-psql-windows-github.xml --verbose --stop-on-error --exclude-group functional + uses: nick-fields/retry@v3 + with: + timeout_minutes: 15 + max_attempts: 3 + command: phpBB/vendor/bin/phpunit --configuration .github/phpunit-psql-windows-github.xml --verbose --stop-on-error --exclude-group functional