Skip to content

Commit

Permalink
fix warning about indent
Browse files Browse the repository at this point in the history
  • Loading branch information
enricosada committed Jan 22, 2018
1 parent 7c0579e commit ba7eb10
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions build.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -244,8 +244,7 @@ Target "DotnetTest" (fun _ ->
DotNetCli.Test (fun c ->
{ c with
Project = "tests/Paket.Tests.preview3/Paket.Tests.fsproj"
AdditionalArgs = [
sprintf "--logger:trx;LogFileName=%s" ("tests_result/netcore/Paket.Tests/TestResult.trx" |> Path.GetFullPath) ]
AdditionalArgs = [ sprintf "--logger:trx;LogFileName=%s" ("tests_result/netcore/Paket.Tests/TestResult.trx" |> Path.GetFullPath) ]
ToolPath = dotnetExePath
})
)
Expand All @@ -259,9 +258,9 @@ Target "RunIntegrationTestsNetCore" (fun _ ->
{ c with
Project = "integrationtests/Paket.IntegrationTests.preview3/Paket.IntegrationTests.fsproj"
ToolPath = dotnetExePath
AdditionalArgs = [
"--filter"; (if testSuiteFilterFlakyTests then "TestCategory=Flaky" else "TestCategory!=Flaky")
sprintf "--logger:trx;LogFileName=%s" ("tests_result/netcore/Paket.IntegrationTests/TestResult.trx" |> Path.GetFullPath) ]
AdditionalArgs =
[ "--filter"; (if testSuiteFilterFlakyTests then "TestCategory=Flaky" else "TestCategory!=Flaky")
sprintf "--logger:trx;LogFileName=%s" ("tests_result/netcore/Paket.IntegrationTests/TestResult.trx" |> Path.GetFullPath) ]
TimeOut = TimeSpan.FromMinutes 50.
})
)
Expand Down

0 comments on commit ba7eb10

Please sign in to comment.