Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions GVFS/GVFS.FunctionalTests/Tools/GitProcess.cs
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,9 @@ public static ProcessResult InvokeProcess(
}

processInfo.EnvironmentVariables["GIT_TERMINAL_PROMPT"] = "0";
// Suppress progress output (e.g. "Updating files: 100%") which is timing-dependent
// and causes flaky stderr comparisons between control and GVFS repos.
processInfo.EnvironmentVariables["GIT_PROGRESS_DELAY"] = "3600";

if (environmentVariables != null)
{
Expand Down
Loading