diff --git a/tests/conftest.py b/tests/conftest.py index 8c32575a..50df2f7d 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -99,8 +99,8 @@ def isolate(tmpdir, monkeypatch): monkeypatch.setenv("GIT_AUTHOR_EMAIL", "distutils-sig@python.org") # FIXME: Windows... - os.makedirs(os.path.join(home_dir, ".config", "git")) - with open(os.path.join(home_dir, ".config", "git", "config"), "wb") as fp: + #os.makedirs(os.path.join(home_dir, ".gitconfig", "git")) + with open(os.path.join(home_dir, ".gitconfig"), "wb") as fp: fp.write(b"[user]\n\tname = pip\n\temail = distutils-sig@python.org\n")