From 4a679936bbba750969e6260533c4cd5d45225015 Mon Sep 17 00:00:00 2001 From: Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> Date: Tue, 1 Apr 2025 22:37:49 +0100 Subject: [PATCH] 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. --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4a6a08ae219..12f8b2486b4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -370,8 +370,8 @@ jobs: - name: Run functional tests env: - # TODO: Fix the excluded tests and re-enable them. - EXCLUDE: '--exclude wallet_migration.py,wallet_multiwallet.py' + # TODO: Fix the excluded test and re-enable it. + EXCLUDE: '--exclude wallet_multiwallet.py' 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