1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-10-11 23:14:34 +02:00

[ticket/17555] Use retries for windows tests

PHPBB-17555
This commit is contained in:
Marc Alexander
2025-10-06 17:06:30 +02:00
parent b3b5e328f9
commit 2a65b0ee2e

View File

@@ -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