_pytest._code.Source object for the current statement.
(self)
| 223 | |
| 224 | @property |
| 225 | def statement(self) -> "Source": |
| 226 | """_pytest._code.Source object for the current statement.""" |
| 227 | source = self.frame.code.fullsource |
| 228 | assert source is not None |
| 229 | return source.getstatement(self.lineno) |
| 230 | |
| 231 | @property |
| 232 | def path(self) -> Union[Path, str]: |
nothing calls this directly
no test coverage detected