From 5174565802f426db1e9c8200a9421f82f61a5c99 Mon Sep 17 00:00:00 2001 From: Max Edwards Date: Wed, 25 Jun 2025 21:06:10 +0100 Subject: [PATCH] ci: disable feature_unsupported_utxo_db functional test This test required v0.14.3 which doesn't support special characters like emojis in the datapath on windows. Functional test runner includes a few emojis in it's default data directory. --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 77f0877c00a..d21deba9658 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -375,7 +375,8 @@ jobs: - name: Run functional tests env: # TODO: Fix the excluded test and re-enable it. - EXCLUDE: '--exclude wallet_multiwallet.py' + # feature_unsupported_utxo_db.py fails on windows because of emojis in the test data directory + EXCLUDE: '--exclude wallet_multiwallet.py,feature_unsupported_utxo_db.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