File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed
Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -286,6 +286,10 @@ jobs:
286286 run : py -3 test\util\rpcauth-test.py
287287
288288 - name : Run functional tests
289- env :
290- TEST_RUNNER_EXTRA : ${{ github.event_name != 'pull_request' && '--extended' || '' }}
291- run : py -3 test\functional\test_runner.py --jobs $env:NUMBER_OF_PROCESSORS --ci --quiet --tmpdirprefix=$env:RUNNER_TEMP --combinedlogslen=99999999 --timeout-factor=$env:TEST_RUNNER_TIMEOUT_FACTOR $env:TEST_RUNNER_EXTRA
289+ # Don't run functional tests for pull requests.
290+ # The test suit regularly fails to complete in windows native github
291+ # actions as a child process stops making progress. The root cause has
292+ # not yet been determined.
293+ # Discussed in https://github.com/bitcoin/bitcoin/pull/28509
294+ if : github.event_name != 'pull_request'
295+ run : py -3 test\functional\test_runner.py --jobs $env:NUMBER_OF_PROCESSORS --ci --quiet --tmpdirprefix=$env:RUNNER_TEMP --combinedlogslen=99999999 --timeout-factor=$env:TEST_RUNNER_TIMEOUT_FACTOR --extended
You can’t perform that action at this time.
0 commit comments