:meta private:
(self, mark: Mark, *, _ispytest: bool = False)
| 305 | mark: Mark |
| 306 | |
| 307 | def __init__(self, mark: Mark, *, _ispytest: bool = False) -> None: |
| 308 | """:meta private:""" |
| 309 | check_ispytest(_ispytest) |
| 310 | self.mark = mark |
| 311 | |
| 312 | @property |
| 313 | def name(self) -> str: |
nothing calls this directly
no test coverage detected