From f262ca2d1ca864e37704ab2a35d9426f85a31c6c Mon Sep 17 00:00:00 2001 From: Antoine Poinsot Date: Wed, 29 Mar 2023 16:32:48 +0200 Subject: [PATCH] tests: reduce the number of workers for the executor We don't use the executor much anyways. --- tests/test_framework/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_framework/utils.py b/tests/test_framework/utils.py index 75862282..d57c329c 100644 --- a/tests/test_framework/utils.py +++ b/tests/test_framework/utils.py @@ -12,7 +12,7 @@ from io import BytesIO from .serializations import CTransaction, PSBT TIMEOUT = int(os.getenv("TIMEOUT", 20)) -EXECUTOR_WORKERS = int(os.getenv("EXECUTOR_WORKERS", 20)) +EXECUTOR_WORKERS = int(os.getenv("EXECUTOR_WORKERS", 5)) VERBOSE = os.getenv("VERBOSE", "0") == "1" LOG_LEVEL = os.getenv("LOG_LEVEL", "debug") assert LOG_LEVEL in ["trace", "debug", "info", "warn", "error"]