Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .generator/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Comment thread
parthea marked this conversation as resolved.
logger.info(result)


Expand Down
2 changes: 1 addition & 1 deletion .generator/test_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
)


Expand Down
Loading