(request, tempdir)
| 150 | |
| 151 | @pytest.fixture |
| 152 | def localfs(request, tempdir): |
| 153 | return dict( |
| 154 | fs=LocalFileSystem(), |
| 155 | pathfn=lambda p: (tempdir / p).as_posix(), |
| 156 | allow_move_dir=True, |
| 157 | allow_append_to_file=True, |
| 158 | ) |
| 159 | |
| 160 | |
| 161 | @pytest.fixture |
nothing calls this directly
no test coverage detected