(tempdir_factory, **kwargs)
| 36 | |
| 37 | |
| 38 | def _run_try_repo(tempdir_factory, **kwargs): |
| 39 | repo = make_repo(tempdir_factory, 'modified_file_returns_zero_repo') |
| 40 | with cwd(git_dir(tempdir_factory)): |
| 41 | _add_test_file() |
| 42 | assert not try_repo(try_repo_opts(repo, **kwargs)) |
| 43 | |
| 44 | |
| 45 | def test_try_repo_repo_only(cap_out, tempdir_factory): |
no test coverage detected