From d98a92ad55f1e5bf6635e6f2c7694fac1d0376e9 Mon Sep 17 00:00:00 2001 From: Anthonios Partheniou Date: Thu, 8 Jan 2026 16:37:06 -0500 Subject: [PATCH 1/3] chore(librarian): temporarily bump nox session timeout to 20 minutes --- .generator/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.generator/cli.py b/.generator/cli.py index 2e56554c5aa8..fde3d71ebb4e 100644 --- a/.generator/cli.py +++ b/.generator/cli.py @@ -1039,7 +1039,7 @@ def _run_individual_session( "-f", f"{library_path}/noxfile.py", ] - result = subprocess.run(command, text=True, check=True, timeout=600) + result = subprocess.run(command, text=True, check=True, timeout=1200) logger.info(result) From aa1180c89cf18e02c022d5c7bd4d6ecaf67b4db7 Mon Sep 17 00:00:00 2001 From: Anthonios Partheniou Date: Thu, 8 Jan 2026 16:39:05 -0500 Subject: [PATCH 2/3] update test --- .generator/test_cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.generator/test_cli.py b/.generator/test_cli.py index 74d4e206945f..68d61343f145 100644 --- a/.generator/test_cli.py +++ b/.generator/test_cli.py @@ -758,7 +758,7 @@ def test_run_individual_session_success(mocker, caplog, is_mono_repo): ), ] mock_subprocess_run.assert_called_once_with( - expected_command, text=True, check=True, timeout=600 + expected_command, text=True, check=True, timeout=1200 ) From c518afcd251e71d9e303da3a34f9dc3963598eeb Mon Sep 17 00:00:00 2001 From: Anthonios Partheniou Date: Thu, 8 Jan 2026 16:40:41 -0500 Subject: [PATCH 3/3] Update .generator/cli.py Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> --- .generator/cli.py | 1 + 1 file changed, 1 insertion(+) diff --git a/.generator/cli.py b/.generator/cli.py index fde3d71ebb4e..a9491a400e25 100644 --- a/.generator/cli.py +++ b/.generator/cli.py @@ -1039,6 +1039,7 @@ def _run_individual_session( "-f", f"{library_path}/noxfile.py", ] + # TODO(#14992): Revert to 600 seconds (10 minutes) after debugging is complete. result = subprocess.run(command, text=True, check=True, timeout=1200) logger.info(result)