Skip to content

Commit fe29cd9

Browse files
authored
Merge pull request #1987 from tyrielv/tyrielv/fix-placeholder-flaky-test
Fix flaky CreatePlaceholderTests stderr comparison
2 parents 334a1af + 249b895 commit fe29cd9

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

GVFS/GVFS.FunctionalTests/Tools/GitProcess.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,9 @@ public static ProcessResult InvokeProcess(
3535
}
3636

3737
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";
3841

3942
if (environmentVariables != null)
4043
{

0 commit comments

Comments
 (0)