(
fixture_name: str,
tmp_path: pathlib.Path,
)
| 40 | |
| 41 | |
| 42 | def _make_entrypoint( |
| 43 | fixture_name: str, |
| 44 | tmp_path: pathlib.Path, |
| 45 | ) -> tuple[pathlib.Path, str, str]: |
| 46 | src = _FIXTURES / fixture_name |
| 47 | dst = tmp_path / fixture_name |
| 48 | shutil.copy2(src, dst) |
| 49 | return dst, fixture_name, fixture_name.removesuffix(".py") |
| 50 | |
| 51 | |
| 52 | def _coverage_active() -> bool: |
no test coverage detected