We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f6ac9b1 + 4a161e4 commit c83e9f4Copy full SHA for c83e9f4
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