From 393815b8ad5c0b694fcf33e2ceffbff07f686e5b Mon Sep 17 00:00:00 2001 From: Pranav K Date: Tue, 16 Oct 2018 09:57:34 -0700 Subject: [PATCH] Increase test timeout to accomodate slow machines --- test/FunctionalTests/ProcessManager.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/FunctionalTests/ProcessManager.cs b/test/FunctionalTests/ProcessManager.cs index 9689a2da7d..77bebe26c8 100644 --- a/test/FunctionalTests/ProcessManager.cs +++ b/test/FunctionalTests/ProcessManager.cs @@ -11,7 +11,7 @@ namespace FunctionalTests { internal static class ProcessManager { - private static readonly TimeSpan Timeout = TimeSpan.FromSeconds(60); + private static readonly TimeSpan Timeout = TimeSpan.FromMinutes(3); public static Task RunProcessAsync(ProcessStartInfo processStartInfo) {