Return all processes needed for Python tests
(
enable_stack_trace: bool, run_slow: bool = False, verbose: bool = False
)
| 728 | |
| 729 | |
| 730 | def get_python_test_processes( |
| 731 | enable_stack_trace: bool, run_slow: bool = False, verbose: bool = False |
| 732 | ) -> list[RunningProcess]: |
| 733 | """Return all processes needed for Python tests""" |
| 734 | return [ |
| 735 | create_python_test_process(False, run_slow, verbose) |
| 736 | ] # Disable stack trace for Python tests |
| 737 | |
| 738 | |
| 739 | def get_integration_test_processes( |
nothing calls this directly
no test coverage detected