(self, path)
| 21 | |
| 22 | class ProgressPlugin: |
| 23 | def __init__(self, path): |
| 24 | self.path = path |
| 25 | self.data = { |
| 26 | "collected": 0, |
| 27 | "passed": 0, |
| 28 | "failed": 0, |
| 29 | "skipped": 0, |
| 30 | "xfailed": 0, |
| 31 | "error": 0, |
| 32 | } |
| 33 | |
| 34 | def pytest_collection_modifyitems(self, items): |
| 35 | self.data["collected"] = len(items) |
nothing calls this directly
no outgoing calls
no test coverage detected