diff options
author | Andrew Chow <achow101-github@achow101.com> | 2020-10-29 12:28:07 -0400 |
---|---|---|
committer | Andrew Chow <achow101-github@achow101.com> | 2020-10-29 12:34:16 -0400 |
commit | 586640381a2c379ce3d6366b1b4534ccc4e8ccf2 (patch) | |
tree | 917bced73ce098d0f3762fe3634a428d777f7bcf /test/functional/wallet_descriptor.py | |
parent | 42b66a6b814bca130a9ccf0a3f747cf33d628232 (diff) |
Skip --descriptor tests if sqlite is not compiled
Diffstat (limited to 'test/functional/wallet_descriptor.py')
-rwxr-xr-x | test/functional/wallet_descriptor.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/functional/wallet_descriptor.py b/test/functional/wallet_descriptor.py index 51e9ec8f40..9282809530 100755 --- a/test/functional/wallet_descriptor.py +++ b/test/functional/wallet_descriptor.py @@ -19,6 +19,7 @@ class WalletDescriptorTest(BitcoinTestFramework): def skip_test_if_missing_module(self): self.skip_if_no_wallet() + self.skip_if_no_sqlite() def run_test(self): wallet_info = self.nodes[0].getwalletinfo() |