We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 334a1af + 249b895 commit fe29cd9Copy full SHA for fe29cd9
1 file changed
GVFS/GVFS.FunctionalTests/Tools/GitProcess.cs
@@ -35,6 +35,9 @@ public static ProcessResult InvokeProcess(
35
}
36
37
processInfo.EnvironmentVariables["GIT_TERMINAL_PROMPT"] = "0";
38
+ // Suppress progress output (e.g. "Updating files: 100%") which is timing-dependent
39
+ // and causes flaky stderr comparisons between control and GVFS repos.
40
+ processInfo.EnvironmentVariables["GIT_PROGRESS_DELAY"] = "3600";
41
42
if (environmentVariables != null)
43
{
0 commit comments