(datadir: Path, monkeypatch)
| 294 | # Local saving |
| 295 | @pytest.mark.skipif("CI" in os.environ, reason="Currently depends on building fe-components first") |
| 296 | def test_save_report_simple(datadir: Path, monkeypatch): # noqa: ANN |
| 297 | monkeypatch.chdir(datadir) |
| 298 | view = gen_view_simple() |
| 299 | dp.save_report(view, path="test_out.html", name="My Test Report") |
| 300 | |
| 301 | |
| 302 | @pytest.mark.skipif("CI" in os.environ, reason="Currently depends on building fe-components first") |
nothing calls this directly
no test coverage detected