(tmp_dir, dvc)
| 163 | |
| 164 | @pytest.fixture |
| 165 | def custom_template(tmp_dir, dvc): |
| 166 | from dvc_render.vega_templates import SimpleLinearTemplate |
| 167 | |
| 168 | template = tmp_dir / "custom_template.json" |
| 169 | template.write_text(json.dumps(SimpleLinearTemplate.DEFAULT_CONTENT)) |
| 170 | return template |
| 171 | |
| 172 | |
| 173 | @pytest.fixture(autouse=True) |
nothing calls this directly
no test coverage detected