MCPcopy Index your code
hub / github.com/RustPython/RustPython / TestResult

Class TestResult

scripts/update_lib/cmd_auto_mark.py:40–44  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

38
39@dataclass
40class TestResult:
41 tests_result: str = ""
42 tests: list[Test] = field(default_factory=list)
43 unexpected_successes: list[Test] = field(default_factory=list)
44 stdout: str = ""
45
46
47def run_test(test_name: str, skip_build: bool = False) -> TestResult:

Calls 1

fieldFunction · 0.90