Skip to content

Commit 4162cd6

Browse files
committed
Increase time out on integration tests
1 parent da61eca commit 4162cd6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

build/scripts/Testing.fs

+2-2
Original file line numberDiff line numberDiff line change
@@ -57,10 +57,10 @@ module Tests =
5757
| _ -> command
5858

5959
if Environment.UserInteractive then
60-
let out = Tooling.DotNet.StartInWithTimeout "src/Tests/Tests" commandWithCodeCoverage (TimeSpan.FromMinutes 30.)
60+
let out = Tooling.DotNet.StartInWithTimeout "src/Tests/Tests" commandWithCodeCoverage (TimeSpan.FromMinutes 60.)
6161
if out.ExitCode <> 0 then failwith "dotnet test failed"
6262
else
63-
Tooling.DotNet.ExecInWithTimeout "src/Tests/Tests" commandWithCodeCoverage (TimeSpan.FromMinutes 30.)
63+
Tooling.DotNet.ExecInWithTimeout "src/Tests/Tests" commandWithCodeCoverage (TimeSpan.FromMinutes 60.)
6464

6565
let RunReleaseUnitTests (ArtifactsVersion(version)) =
6666
//xUnit always does its own build, this env var is picked up by Tests.csproj

0 commit comments

Comments
 (0)