Make WordPress Core


Ignore:
Timestamp:
09/09/2026 12:35:58 PM (8 days ago)
Author:
desrosj
Message:

Build/Test Tools: Increase PHPUnit workflow timeout-minutes.

There has been a considerable number of PHPUnit test workflow runs recently that have been hitting the default configured timeout-minutes value of 20.

This increases the value to 30 to avoid runs being cancelled prematurely until the speed of the test suite can be improved.

See #65845.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/.github/workflows/reusable-phpunit-tests-v3.yml

    r63438 r63557  
    155155    name: ${{ ( inputs.phpunit-test-groups || inputs.coverage-report ) && format( 'PHP {0} with ', inputs.php ) || '' }} ${{ 'mariadb' == inputs.db-type && 'MariaDB' || 'MySQL' }} ${{ inputs.db-version }}${{ inputs.multisite && ' multisite' || '' }}${{ inputs.db-innovation && ' (innovation release)' || '' }}${{ inputs.memcached && ' with memcached' || '' }}${{ inputs.report && ' (test reporting enabled)' || '' }} ${{ 'example.org' != inputs.tests-domain && inputs.tests-domain || '' }}
    156156    runs-on: ${{ vars.RUNNERS_NAME || inputs.os }}
    157     timeout-minutes: ${{ inputs.coverage-report && 120 || inputs.php == '8.4' && 30 || 20 }}
     157    timeout-minutes: ${{ inputs.coverage-report && 120 || 30 }}
    158158    permissions:
    159159      contents: read
Note: See TracChangeset for help on using the changeset viewer.