(request)
| 970 | |
| 971 | |
| 972 | def _test_passed(request): |
| 973 | if _phase_report_key not in request.node.stash: |
| 974 | return True |
| 975 | report = request.node.stash[_phase_report_key] |
| 976 | return "call" in report and report["call"].outcome == "passed" |
| 977 | |
| 978 | |
| 979 | @pytest.fixture() |
no outgoing calls
no test coverage detected