tests: reduce the number of workers for the executor

We don't use the executor much anyways.
This commit is contained in:
Antoine Poinsot 2023-03-29 16:32:48 +02:00
parent 104c6e1a09
commit f262ca2d1c
No known key found for this signature in database
GPG Key ID: E13FC145CD3F4304

View File

@ -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"]