MCPcopy Create free account
hub / github.com/vercel/vercel / _make_entrypoint

Function _make_entrypoint

python/vercel-runtime/tests/test_runtime.py:42–49  ·  view source on GitHub ↗
(
    fixture_name: str,
    tmp_path: pathlib.Path,
)

Source from the content-addressed store, hash-verified

40
41
42def _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
52def _coverage_active() -> bool:

Calls 1

removesuffixMethod · 0.80

Tested by

no test coverage detected