From 3fc6e98277712f5cf6d1692e5d2bcb82b3da3b6f Mon Sep 17 00:00:00 2001 From: Andrew Poelstra Date: Sun, 13 Dec 2020 22:24:32 +0000 Subject: [PATCH] disable previous-release compatibility test and walletupgrade test Should revisit; I am not sure whether we have a long-term stable URL for prebuilt past Elements releases, but we should be able to just point test/get-previous-releases.py at that, and change the set of versions (since we do not have 0.15, 0.19, etc), and we're good to go. --- test/functional/test_runner.py | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/test/functional/test_runner.py b/test/functional/test_runner.py index a0399369bf..b1d65b2ba8 100755 --- a/test/functional/test_runner.py +++ b/test/functional/test_runner.py @@ -219,8 +219,9 @@ BASE_SCRIPTS = [ 'example_test.py', 'wallet_txn_doublespend.py', 'wallet_txn_doublespend.py --descriptors', - 'feature_backwards_compatibility.py', - 'feature_backwards_compatibility.py --descriptors', + # ELEMENTS: need to point past versions at our own release server + #'feature_backwards_compatibility.py', + #'feature_backwards_compatibility.py --descriptors', 'wallet_txn_clone.py --mineblock', # ELEMENTS: needs to be fixed #'feature_notifications.py', @@ -250,7 +251,8 @@ BASE_SCRIPTS = [ 'wallet_import_rescan.py --legacy-wallet', 'wallet_import_with_label.py --legacy-wallet', 'wallet_importdescriptors.py --descriptors', - 'wallet_upgradewallet.py', + # ELEMENTS: need to point past versions at our own release server + #'wallet_upgradewallet.py', 'rpc_bind.py --ipv4', 'rpc_bind.py --ipv6', 'rpc_bind.py --nonloopback', @@ -291,7 +293,8 @@ BASE_SCRIPTS = [ 'feature_includeconf.py', 'feature_asmap.py', 'mempool_unbroadcast.py', - 'mempool_compatibility.py', + # ELEMENTS: need to point past versions at our own release server + #'mempool_compatibility.py', 'rpc_deriveaddresses.py', 'rpc_deriveaddresses.py --usecli', 'p2p_ping.py',