Return path to a pre-built test object file, or skip if missing.
(name: str)
| 48 | |
| 49 | |
| 50 | def obj(name: str) -> str: |
| 51 | """Return path to a pre-built test object file, or skip if missing.""" |
| 52 | path = OBJ_DIR / f"{name}.o" |
| 53 | if not path.exists(): |
| 54 | pytest.skip(f"{path.name} not found (not built)") |
| 55 | return str(path) |
| 56 | |
| 57 | |
| 58 | def make_lib( |
no outgoing calls
no test coverage detected