From ce678f8e33b6801a1bf4d4fb5a28cf5c6b9f4c89 Mon Sep 17 00:00:00 2001 From: Jeff Kluge Date: Wed, 26 Jun 2024 12:47:48 -0700 Subject: [PATCH] Increase timeout for pack tests --- .../NuGet.CommandLine.Test/NuGetPackCommandTest.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/test/NuGet.Clients.Tests/NuGet.CommandLine.Test/NuGetPackCommandTest.cs b/test/NuGet.Clients.Tests/NuGet.CommandLine.Test/NuGetPackCommandTest.cs index 2456f890b21..856f37542cd 100644 --- a/test/NuGet.Clients.Tests/NuGet.CommandLine.Test/NuGetPackCommandTest.cs +++ b/test/NuGet.Clients.Tests/NuGet.CommandLine.Test/NuGetPackCommandTest.cs @@ -1608,6 +1608,7 @@ public void PackCommand_ReferencedProjectWithJsonFile() nugetexe, proj1Directory, "pack proj1.csproj -build -IncludeReferencedProjects", + timeOutInMilliseconds: (int)TimeSpan.FromMinutes(4).TotalMilliseconds, testOutputHelper: _testOutputHelper); Assert.True(0 == r.ExitCode, r.Output + " " + r.Errors);