Raise a FixtureLookupError with the given message.
(self, msg: Optional[str])
| 567 | self.node.add_marker(marker) |
| 568 | |
| 569 | def raiseerror(self, msg: Optional[str]) -> "NoReturn": |
| 570 | """Raise a FixtureLookupError with the given message.""" |
| 571 | raise self._fixturemanager.FixtureLookupError(None, self, msg) |
| 572 | |
| 573 | def _fillfixtures(self) -> None: |
| 574 | item = self._pyfuncitem |