ci, windows: Do not exclude wallet_migration.py in command line

Since https://github.com/bitcoin/bitcoin/pull/31248, it is no longer
necessary to use `--exclude wallet_migration.py`, as the test is skipped
due to not using previous releases.
This commit is contained in:
Hennadii Stepanov 2025-04-01 22:37:49 +01:00
parent 449e2eb7e4
commit 4a679936bb
No known key found for this signature in database
GPG key ID: 410108112E7EA81F

View file

@ -370,8 +370,8 @@ jobs:
- name: Run functional tests - name: Run functional tests
env: env:
# TODO: Fix the excluded tests and re-enable them. # TODO: Fix the excluded test and re-enable it.
EXCLUDE: '--exclude wallet_migration.py,wallet_multiwallet.py' EXCLUDE: '--exclude wallet_multiwallet.py'
TEST_RUNNER_EXTRA: ${{ github.event_name != 'pull_request' && '--extended' || '' }} TEST_RUNNER_EXTRA: ${{ github.event_name != 'pull_request' && '--extended' || '' }}
run: py -3 test/functional/test_runner.py --jobs $NUMBER_OF_PROCESSORS --ci --quiet --tmpdirprefix="$RUNNER_TEMP" --combinedlogslen=99999999 --timeout-factor=$TEST_RUNNER_TIMEOUT_FACTOR $EXCLUDE $TEST_RUNNER_EXTRA run: py -3 test/functional/test_runner.py --jobs $NUMBER_OF_PROCESSORS --ci --quiet --tmpdirprefix="$RUNNER_TEMP" --combinedlogslen=99999999 --timeout-factor=$TEST_RUNNER_TIMEOUT_FACTOR $EXCLUDE $TEST_RUNNER_EXTRA