We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5d6aebc commit 562bcadCopy full SHA for 562bcad
lisa/tools/timeout.py
@@ -21,6 +21,7 @@ def run_with_timeout(
21
timeout: int,
22
signal: int = SIGTERM,
23
kill_timeout: int = 0,
24
+ update_envs: Optional[Dict[str, str]] = None,
25
) -> ExecutableResult:
26
# timeout [OPTION] DURATION COMMAND [ARG]...
27
@@ -39,6 +40,7 @@ def run_with_timeout(
39
40
timeout=timeout,
41
signal=signal,
42
kill_timeout=kill_timeout,
43
+ update_envs=update_envs,
44
).wait_result(timeout=command_timeout)
45
46
def start_with_timeout(
0 commit comments