MCPcopy Create free account
hub / github.com/FastLED/FastLED / get_cpp_test_processes

Function get_cpp_test_processes

ci/util/test_runner.py:715–727  ·  view source on GitHub ↗

Return all processes needed for C++ tests

(
    args: TestArgs, test_categories: TestCategories, enable_stack_trace: bool
)

Source from the content-addressed store, hash-verified

713
714
715def 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
730def get_python_test_processes(

Callers

nothing calls this directly

Calls 3

create_unit_test_processFunction · 0.85
appendMethod · 0.45

Tested by

no test coverage detected