(self)
| 757 | ) |
| 758 | |
| 759 | def is_capturing(self) -> str | bool: |
| 760 | if self.is_globally_capturing(): |
| 761 | return "global" |
| 762 | if self._capture_fixture: |
| 763 | return f"fixture {self._capture_fixture.request.fixturename}" |
| 764 | return False |
| 765 | |
| 766 | # Global capturing control |
| 767 |
no test coverage detected