We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c0f1acb commit 55f55e4Copy full SHA for 55f55e4
1 file changed
build.fsx
@@ -94,7 +94,14 @@ Target.create "SetVersionForCI" (fun _ ->
94
let changelog = getChangelog ()
95
printfn "::set-env name=package_version::%s" changelog.NuGetVersion)
96
97
-Target.create "Test" (fun _ -> DotNet.test id sln)
+Target.create "Test" (fun _ ->
98
+ DotNet.exec (fun p ->
99
+ { p with
100
+ Timeout = Some(System.TimeSpan.FromMinutes 10.) }) "run"
101
+ """--project "./tests/FSharp.CosmosDb.Analyzer.Tests/FSharp.CosmosDb.Analyzer.Tests.fsproj" -- --fail-on-focused-tests --debug --summary"""
102
+ |> fun r ->
103
+ if not r.OK
104
+ then failwithf "Errors while running LSP tests:\n%s" (r.Errors |> String.concat "\n\t"))
105
106
Target.create "RunAnalyzer" (fun ctx ->
107
let args =
0 commit comments