File tree Expand file tree Collapse file tree 1 file changed +3
-7
lines changed Expand file tree Collapse file tree 1 file changed +3
-7
lines changed Original file line number Diff line number Diff line change @@ -282,10 +282,6 @@ jobs:
282282 run : py -3 test\util\rpcauth-test.py
283283
284284 - name : Run functional tests
285- # Don't run functional tests for pull requests.
286- # The test suit regularly fails to complete in windows native github
287- # actions as a child process stops making progress. The root cause has
288- # not yet been determined.
289- # Discussed in https://github.com/bitcoin/bitcoin/pull/28509
290- if : github.event_name != 'pull_request'
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 --extended
285+ env :
286+ TEST_RUNNER_EXTRA : ${{ github.event_name != 'pull_request' && '--extended' || '' }}
287+ 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
You can’t perform that action at this time.
0 commit comments