(tmp_path)
| 207 | |
| 208 | @pytest.fixture |
| 209 | def renv_folder(tmp_path): |
| 210 | renv_dir = tmp_path.joinpath('renv') |
| 211 | renv_dir.mkdir() |
| 212 | activate_r = resource_text('empty_template_activate.R') |
| 213 | renv_dir.joinpath('activate.R').write_text(activate_r) |
| 214 | yield |
| 215 | |
| 216 | |
| 217 | def test_r_hook( |
nothing calls this directly
no test coverage detected