diff options
| author | MarcoFalke <[email protected]> | 2020-03-13 11:10:36 -0400 |
|---|---|---|
| committer | MarcoFalke <[email protected]> | 2020-03-14 22:15:52 -0400 |
| commit | fa192952507dbe5f405abffce38b3556923ba271 (patch) | |
| tree | f9049572c3f0bfc332acd44047482e23cbbc0906 /test/functional/wallet_groups.py | |
| parent | Merge #18228: test: Add missing syncwithvalidationinterfacequeue (diff) | |
| download | discoin-fa192952507dbe5f405abffce38b3556923ba271.tar.xz discoin-fa192952507dbe5f405abffce38b3556923ba271.zip | |
test: Bump timeouts to avoid valgrind failures
Diffstat (limited to 'test/functional/wallet_groups.py')
| -rwxr-xr-x | test/functional/wallet_groups.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/test/functional/wallet_groups.py b/test/functional/wallet_groups.py index f2fa1d3e4..261a43472 100755 --- a/test/functional/wallet_groups.py +++ b/test/functional/wallet_groups.py @@ -11,12 +11,13 @@ from test_framework.util import ( assert_equal, ) + class WalletGroupTest(BitcoinTestFramework): def set_test_params(self): self.setup_clean_chain = True self.num_nodes = 3 self.extra_args = [[], [], ['-avoidpartialspends']] - self.rpc_timeout = 240 + self.rpc_timeout = 480 def skip_test_if_missing_module(self): self.skip_if_no_wallet() @@ -87,5 +88,6 @@ class WalletGroupTest(BitcoinTestFramework): # is way too big. assert self.nodes[2].sendtoaddress(address=addr2[0], amount=5) + if __name__ == '__main__': - WalletGroupTest().main () + WalletGroupTest().main() |