From 75f6c648e79c7d443090f895bb4b67333d368461 Mon Sep 17 00:00:00 2001 From: Alexander Mazuruk Date: Fri, 27 Aug 2021 21:01:27 +0200 Subject: [PATCH] try to fix tests in ci Signed-off-by: Alexander Mazuruk --- tests/conftest.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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")