MCPcopy Create free account
hub / github.com/pytest-dev/pytest / pytest_collect_file

Function pytest_collect_file

doc/en/example/nonpython/conftest.py:5–7  ·  view source on GitHub ↗
(parent, file_path)

Source from the content-addressed store, hash-verified

3
4
5def pytest_collect_file(parent, file_path):
6 if file_path.suffix == ".yaml" and file_path.name.startswith("test"):
7 return YamlFile.from_parent(parent, path=file_path)
8
9
10class YamlFile(pytest.File):

Callers

nothing calls this directly

Calls 1

from_parentMethod · 0.45

Tested by

no test coverage detected