Skip to content

Commit f3dca25

Browse files
committed
Format
1 parent c25dd96 commit f3dca25

4 files changed

Lines changed: 9 additions & 4 deletions

File tree

render_machine/actions/prepare_testing_environment.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ def execute(self, render_context: RenderContext, _previous_action_payload: Any |
2121
[render_context.build_folder],
2222
render_context.verbose,
2323
"Testing Environment Preparation",
24-
timeout=render_context.test_script_timeout
24+
timeout=render_context.test_script_timeout,
2525
)
2626

2727
render_context.conformance_tests_running_context.should_prepare_testing_environment = False

render_machine/actions/run_conformance_tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ def execute(self, render_context: RenderContext, _previous_action_payload: Any |
4444
render_context.verbose,
4545
"Conformance Tests",
4646
frid=render_context.conformance_tests_running_context.current_testing_frid,
47-
timeout=render_context.test_script_timeout
47+
timeout=render_context.test_script_timeout,
4848
)
4949
render_context.script_execution_history.latest_conformance_test_output_path = conformance_tests_temp_file_path
5050
render_context.script_execution_history.should_update_script_outputs = True

render_machine/actions/run_unit_tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ def execute(self, render_context: RenderContext, _previous_action_payload: Any |
2424
[render_context.build_folder],
2525
render_context.verbose,
2626
"Unit Tests",
27-
timeout=render_context.test_script_timeout
27+
timeout=render_context.test_script_timeout,
2828
)
2929

3030
render_context.script_execution_history.latest_unit_test_output_path = unittests_temp_file_path

render_machine/render_utils.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,12 @@ def print_inputs(render_context, existing_files_content, message):
4242

4343

4444
def execute_script(
45-
script: str, scripts_args: list[str], verbose: bool, script_type: str, frid: Optional[str] = None, timeout: Optional[int] = None
45+
script: str,
46+
scripts_args: list[str],
47+
verbose: bool,
48+
script_type: str,
49+
frid: Optional[str] = None,
50+
timeout: Optional[int] = None,
4651
) -> tuple[int, str, Optional[str]]:
4752
temp_file_path = None
4853
try:

0 commit comments

Comments
 (0)