_pytest._code.Source object for the current statement.
(self)
| 265 | |
| 266 | @property |
| 267 | def statement(self) -> Source: |
| 268 | """_pytest._code.Source object for the current statement.""" |
| 269 | source = self.frame.code.fullsource |
| 270 | assert source is not None |
| 271 | return source.getstatement(self.lineno) |
| 272 | |
| 273 | @property |
| 274 | def path(self) -> Path | str: |
nothing calls this directly
no test coverage detected