(request, tempdir, localfs)
| 200 | |
| 201 | @pytest.fixture |
| 202 | def subtree_localfs(request, tempdir, localfs): |
| 203 | return dict( |
| 204 | fs=SubTreeFileSystem(str(tempdir), localfs['fs']), |
| 205 | pathfn=lambda p: p, |
| 206 | allow_move_dir=True, |
| 207 | allow_append_to_file=True, |
| 208 | ) |
| 209 | |
| 210 | |
| 211 | @pytest.fixture |
nothing calls this directly
no test coverage detected