(self)
| 645 | ) |
| 646 | |
| 647 | def is_capturing(self) -> Union[str, bool]: |
| 648 | if self.is_globally_capturing(): |
| 649 | return "global" |
| 650 | if self._capture_fixture: |
| 651 | return "fixture %s" % self._capture_fixture.request.fixturename |
| 652 | return False |
| 653 | |
| 654 | # Global capturing control |
| 655 |
no test coverage detected