ci: exclude some extended tests for previous releases job

also consider descriptorprocesspsbt and parsepsbt as covered for functional
tests so the ci job can pass
This commit is contained in:
Byron Hambly 2025-08-20 14:59:55 +02:00
parent 78ce37efb7
commit 2581861098
No known key found for this signature in database
GPG key ID: DE8F6EA20A661697
2 changed files with 4 additions and 1 deletions

View file

@ -19,3 +19,5 @@ export NO_WERROR=1 # -Werror=maybe-uninitialized
export DOWNLOAD_PREVIOUS_RELEASES="true"
export BITCOIN_CONFIG="--enable-zmq --with-libs=no --with-gui=qt5 --enable-reduce-exports --enable-debug \
CFLAGS=\"-g0 -O2 -funsigned-char\" CPPFLAGS='-DBOOST_MULTI_INDEX_ENABLE_SAFE_MODE' CXXFLAGS=\"-g0 -O2 -funsigned-char\""
export TEST_RUNNER_EXTRA="${TEST_RUNNER_EXTRA},feature_fee_estimation,wallet_inactive_hdchains,wallet_elements_regression_fundrawtransaction,feature_txindex_compatibility,feature_unsupported_utxo_db" # ELEMENTS

View file

@ -915,7 +915,8 @@ class RPCCoverage():
# test_framework/test_node.py and not seen by the coverage check.
# ELEMENTS: also consider `getdifficulty` and `getnetworkhashps` covered, which should be removed as they are meaningless on a signed-block chain
# ELEMENTS: also consider `pruneblockchain` covered since its test is temporarily disabled
covered_cmds = set({'generate', 'getdifficulty', 'getnetworkhashps', 'pruneblockchain'})
# ELEMENTS FIXME: consider `descriptprocesspsbt` and `parsepsbt` as covered until PSBT FIXMEs are taken care of
covered_cmds = set({'generate', 'getdifficulty', 'getnetworkhashps', 'pruneblockchain', 'descriptorprocesspsbt', 'parsepsbt'})
if not os.path.isfile(coverage_ref_filename):
raise RuntimeError("No coverage reference found")