(
renv_lock_file,
hello_world_file,
renv_folder,
prefix,
)
| 252 | |
| 253 | @pytest.fixture |
| 254 | def installed_environment( |
| 255 | renv_lock_file, |
| 256 | hello_world_file, |
| 257 | renv_folder, |
| 258 | prefix, |
| 259 | ): |
| 260 | env_dir = lang_base.environment_dir( |
| 261 | prefix, r.ENVIRONMENT_DIR, r.get_default_version(), |
| 262 | ) |
| 263 | r.install_environment(prefix, C.DEFAULT, ()) |
| 264 | yield prefix, env_dir |
| 265 | |
| 266 | |
| 267 | def test_health_check_healthy(installed_environment): |
nothing calls this directly
no test coverage detected