diff --git a/.generator/cli.py b/.generator/cli.py index 2e56554c5aa8..a9491a400e25 100644 --- a/.generator/cli.py +++ b/.generator/cli.py @@ -1039,7 +1039,8 @@ def _run_individual_session( "-f", f"{library_path}/noxfile.py", ] - result = subprocess.run(command, text=True, check=True, timeout=600) + # 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) 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 )