(parent, file_path)
| 5 | |
| 6 | |
| 7 | def pytest_collect_file(parent, file_path): |
| 8 | if file_path.suffix == ".yaml" and file_path.name.startswith("test"): |
| 9 | return YamlFile.from_parent(parent, path=file_path) |
| 10 | |
| 11 | |
| 12 | class YamlFile(pytest.File): |
nothing calls this directly
no test coverage detected
searching dependent graphs…