(self)
| 569 | assert rc is None |
| 570 | |
| 571 | def test_lint_failure(self) -> None: |
| 572 | mock_driver = _make_mock_driver() |
| 573 | ctx = _make_ctx(build_driver=mock_driver) |
| 574 | ctx.args = _make_args(skip_lint=False) |
| 575 | qctx = QuietContext(quiet=False) |
| 576 | with patch(f"{_PATCH_MOD}.run_cpp_lint", return_value=False): |
| 577 | rc = asyncio.run(_run_build_deploy(ctx, qctx)) |
| 578 | assert rc == 1 |
| 579 | |
| 580 | |
| 581 | # ============================================================ |
nothing calls this directly
no test coverage detected