Skip to content

Commit dcbb6ac

Browse files
chore(librarian): temporarily bump nox session timeout to 20 minutes (#15009)
This PR is needed to help debug the issue in 14992. Towards #14992 --------- Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
1 parent c0e3e9d commit dcbb6ac

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.generator/cli.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1039,7 +1039,8 @@ def _run_individual_session(
10391039
"-f",
10401040
f"{library_path}/noxfile.py",
10411041
]
1042-
result = subprocess.run(command, text=True, check=True, timeout=600)
1042+
# TODO(#14992): Revert to 600 seconds (10 minutes) after debugging is complete.
1043+
result = subprocess.run(command, text=True, check=True, timeout=1200)
10431044
logger.info(result)
10441045

10451046

.generator/test_cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -758,7 +758,7 @@ def test_run_individual_session_success(mocker, caplog, is_mono_repo):
758758
),
759759
]
760760
mock_subprocess_run.assert_called_once_with(
761-
expected_command, text=True, check=True, timeout=600
761+
expected_command, text=True, check=True, timeout=1200
762762
)
763763

764764

0 commit comments

Comments
 (0)