Return all processes needed for integration tests
(
args: TestArgs, enable_stack_trace: bool
)
| 737 | |
| 738 | |
| 739 | def get_integration_test_processes( |
| 740 | args: TestArgs, enable_stack_trace: bool |
| 741 | ) -> list[RunningProcess]: |
| 742 | """Return all processes needed for integration tests""" |
| 743 | return [create_integration_test_process(args, enable_stack_trace)] |
| 744 | |
| 745 | |
| 746 | def get_all_test_processes( |
nothing calls this directly
no test coverage detected