(opts, *remotes)
| 62 | |
| 63 | |
| 64 | def _get_gitfs(opts, *remotes): |
| 65 | return GitFS( |
| 66 | opts, |
| 67 | remotes, |
| 68 | per_remote_overrides=PER_REMOTE_OVERRIDES, |
| 69 | per_remote_only=PER_REMOTE_ONLY, |
| 70 | ) |
| 71 | |
| 72 | |
| 73 | def _test_gitfs_simple(gitfs_opts): |
no test coverage detected