diff --git a/integration/conftest.py b/integration/conftest.py index f670c6486..eaf740190 100644 --- a/integration/conftest.py +++ b/integration/conftest.py @@ -511,7 +511,6 @@ def chutney(reactor, temp_dir: str) -> tuple[str, dict[str, str]]: chutney_dir, { "PYTHONPATH": join(chutney_dir, "lib"), - "CHUTNEY_START_TIME": "600", # default is 60 } ) @@ -534,6 +533,10 @@ def tor_network(reactor, temp_dir, chutney, request): env = environ.copy() env.update(chutney_env) + env.update({ + # default is 60, probably too short for reliable automated use. + "CHUTNEY_START_TIME": "600", + }) chutney_argv = (sys.executable, '-m', 'chutney.TorNet') def chutney(argv): proto = _DumpOutputProtocol(None)