Skip to content

Commit 7b22cd8

Browse files
committed
Revert "ci: Only run functional tests on windows in master"
This reverts commit aba4a58.
1 parent d5e5810 commit 7b22cd8

File tree

1 file changed

+3
-7
lines changed

1 file changed

+3
-7
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)