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

Function get_python_test_processes

ci/util/test_runner.py:730–736  ·  view source on GitHub ↗

Return all processes needed for Python tests

(
    enable_stack_trace: bool, run_slow: bool = False, verbose: bool = False
)

Source from the content-addressed store, hash-verified

728
729
730def 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
739def get_integration_test_processes(

Callers

nothing calls this directly

Calls 1

Tested by

no test coverage detected