Skip to content

Commit

Permalink
hmmmmmmmm
Browse files Browse the repository at this point in the history
  • Loading branch information
Numpsy committed Jun 16, 2024
1 parent 0ae05ac commit 953ca8d
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion build.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ let dotnetSdk = lazy DotNet.install DotNet.Versions.FromGlobalJson
let inline dotnetWorkingDir wd =
DotNet.Options.lift dotnetSdk.Value
>> DotNet.Options.withWorkingDirectory wd
>> DotNet.Options.withTimeout (Some(System.TimeSpan.FromMinutes 20.))
>> DotNet.Options.withTimeout (Some(System.TimeSpan.FromMinutes 45.))

/// <summary>
/// DotNet host with default values and given arguments
Expand Down
2 changes: 1 addition & 1 deletion src/test/Fake.Core.CommandLine.UnitTests/Main.fs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ open System

[<EntryPoint>]
let main argv =
let config = defaultConfig |> ExpectoHelpers.addTimeout (TimeSpan.FromMinutes(20.))
let config = defaultConfig |> ExpectoHelpers.addTimeout (TimeSpan.FromMinutes(45.))

Tests.runTestsInAssembly
{ config with
Expand Down
2 changes: 1 addition & 1 deletion src/test/Fake.Core.IntegrationTests/Main.fs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ open System

[<EntryPoint>]
let main argv =
let config = defaultConfig |> ExpectoHelpers.addTimeout (TimeSpan.FromMinutes(20.))
let config = defaultConfig |> ExpectoHelpers.addTimeout (TimeSpan.FromMinutes(45.))

Tests.runTestsInAssembly
{ config with
Expand Down
2 changes: 1 addition & 1 deletion src/test/Fake.DotNet.Cli.IntegrationTests/Main.fs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ open System

[<EntryPoint>]
let main argv =
let config = defaultConfig |> ExpectoHelpers.addTimeout (TimeSpan.FromMinutes(20.))
let config = defaultConfig |> ExpectoHelpers.addTimeout (TimeSpan.FromMinutes(45.))

Tests.runTestsInAssembly
{ config with
Expand Down

0 comments on commit 953ca8d

Please sign in to comment.