aboutsummaryrefslogtreecommitdiff
path: root/test/functional/feature_index_prune.py
diff options
context:
space:
mode:
authorChristopher Bergqvist <chris@digitalpoetry.se>2024-04-02 09:39:14 +0200
committerChristopher Bergqvist <chris@digitalpoetry.se>2024-04-02 17:49:48 +0200
commit49c0b8b2288e60ae22fcac5d03811cf36ecec058 (patch)
treecb60729973456ccb08e942ed4f5ee700b804a902 /test/functional/feature_index_prune.py
parent23ba39470c3d155a65f0616f8848ada730658301 (diff)
downloadbitcoin-49c0b8b2288e60ae22fcac5d03811cf36ecec058.tar.xz
test: Bump timeouts in feature_index_prune and wallet_importdescriptors
Timeout issues where encountered when running functional tests with `--jobs=16 --extended`. Line in `feature_index_prune.py` took 101.6s, 96.6s, 103.0s across 3 runs on my machine, default limit is 60. Line in the `wallet_importdescriptors.py --descriptors` took 5.4s, 5.7s, 6.0s across 3 runs.
Diffstat (limited to 'test/functional/feature_index_prune.py')
-rwxr-xr-xtest/functional/feature_index_prune.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/feature_index_prune.py b/test/functional/feature_index_prune.py
index b3bf35b524..66c0a4f615 100755
--- a/test/functional/feature_index_prune.py
+++ b/test/functional/feature_index_prune.py
@@ -31,7 +31,7 @@ class FeatureIndexPruneTest(BitcoinTestFramework):
expected_stats = {
'coinstatsindex': {'synced': True, 'best_block_height': height}
}
- self.wait_until(lambda: self.nodes[1].getindexinfo() == expected_stats)
+ self.wait_until(lambda: self.nodes[1].getindexinfo() == expected_stats, timeout=150)
expected = {**expected_filter, **expected_stats}
self.wait_until(lambda: self.nodes[2].getindexinfo() == expected)