aboutsummaryrefslogtreecommitdiff
path: root/test/functional/feature_signet.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/functional/feature_signet.py')
-rwxr-xr-xtest/functional/feature_signet.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/test/functional/feature_signet.py b/test/functional/feature_signet.py
index 63091b3ee8..02e37f0fdd 100755
--- a/test/functional/feature_signet.py
+++ b/test/functional/feature_signet.py
@@ -26,12 +26,14 @@ signet_blocks = [
class SignetParams:
def __init__(self, challenge=None):
+ # Prune to prevent disk space warning on CI systems with limited space,
+ # when using networks other than regtest.
if challenge is None:
self.challenge = SIGNET_DEFAULT_CHALLENGE
- self.shared_args = []
+ self.shared_args = ["-prune=550"]
else:
self.challenge = challenge
- self.shared_args = [f"-signetchallenge={challenge}"]
+ self.shared_args = ["-prune=550", f"-signetchallenge={challenge}"]
class SignetBasicTest(BitcoinTestFramework):
def set_test_params(self):