(request, tempdir)
| 160 | |
| 161 | @pytest.fixture |
| 162 | def py_localfs(request, tempdir): |
| 163 | return dict( |
| 164 | fs=PyFileSystem(ProxyHandler(LocalFileSystem())), |
| 165 | pathfn=lambda p: (tempdir / p).as_posix(), |
| 166 | allow_move_dir=True, |
| 167 | allow_append_to_file=True, |
| 168 | ) |
| 169 | |
| 170 | |
| 171 | @pytest.fixture |
nothing calls this directly
no test coverage detected