Return all processes needed for C++ tests
(
args: TestArgs, test_categories: TestCategories, enable_stack_trace: bool
)
| 713 | |
| 714 | |
| 715 | def get_cpp_test_processes( |
| 716 | args: TestArgs, test_categories: TestCategories, enable_stack_trace: bool |
| 717 | ) -> list[RunningProcess]: |
| 718 | """Return all processes needed for C++ tests""" |
| 719 | processes: list[RunningProcess] = [] |
| 720 | |
| 721 | if test_categories.unit: |
| 722 | processes.append(create_unit_test_process(args, enable_stack_trace)) |
| 723 | |
| 724 | if test_categories.examples: |
| 725 | processes.append(create_examples_test_process(args, enable_stack_trace)) |
| 726 | |
| 727 | return processes |
| 728 | |
| 729 | |
| 730 | def get_python_test_processes( |
nothing calls this directly
no test coverage detected