(parent, file_path)
| 3 | |
| 4 | |
| 5 | def 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 | |
| 10 | class YamlFile(pytest.File): |
nothing calls this directly
no test coverage detected