(runner, tmp_path)
| 447 | |
| 448 | |
| 449 | def test_isolated_runner_custom_tempdir(runner, tmp_path): |
| 450 | with runner.isolated_filesystem(temp_dir=tmp_path) as d: |
| 451 | assert os.path.exists(d) |
| 452 | |
| 453 | assert os.path.exists(d) |
| 454 | os.rmdir(d) |
| 455 | |
| 456 | |
| 457 | def test_isolation_stderr_errors(): |
nothing calls this directly
no test coverage detected