(request, tempdir)
| 190 | |
| 191 | @pytest.fixture |
| 192 | def localfs_with_mmap(request, tempdir): |
| 193 | return dict( |
| 194 | fs=LocalFileSystem(use_mmap=True), |
| 195 | pathfn=lambda p: (tempdir / p).as_posix(), |
| 196 | allow_move_dir=True, |
| 197 | allow_append_to_file=True, |
| 198 | ) |
| 199 | |
| 200 | |
| 201 | @pytest.fixture |
nothing calls this directly
no test coverage detected