(tmpdir_factory)
| 229 | |
| 230 | @pytest.fixture(scope='session', autouse=True) |
| 231 | def set_git_templatedir(tmpdir_factory): |
| 232 | tdir = str(tmpdir_factory.mktemp('git_template_dir')) |
| 233 | with envcontext((('GIT_TEMPLATE_DIR', tdir),)): |
| 234 | yield |
nothing calls this directly
no test coverage detected