1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2025-06-26 18:02:35 +00:00
trezor-firmware/core/mocks/generated/coveragedata.pyi
Roman Zeyde 64241033cb chore(core): move coverage-related Rust code into a separate module
Also, exclude it from non-debug builds.

[no changelog]
2025-05-30 19:26:51 +03:00

16 lines
262 B
Python

from typing import *
# rust/src/coverage/mod.rs
def add(file: str, line: int) -> None:
"""
Mark file line as covered.
"""
# rust/src/coverage/mod.rs
def get() -> list[tuple[str, int]]:
"""
Return a list of all covered file lines.
"""