We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f6ac9b1 commit 4a161e4Copy full SHA for 4a161e4
1 file changed
cookie_python/manage/repo.py
@@ -95,6 +95,10 @@ def run(
95
self, *popenargs: Any, check: bool = True, **kwargs: Any
96
) -> subprocess.CompletedProcess:
97
kwargs.setdefault("cwd", self.clone_path)
98
+ kwargs.setdefault("env", os.environ.copy())
99
+ kwargs["env"].setdefault(
100
+ "PYTHON_KEYRING_BACKEND", "keyring.backends.null.Keyring"
101
+ )
102
return subprocess.run(*popenargs, check=check, **kwargs)
103
104
def shell(self) -> None:
0 commit comments