We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d7a8764 commit 1a8771eCopy full SHA for 1a8771e
build/build.fsx
@@ -183,13 +183,14 @@ Target "TestNet45" (fun _ ->
183
ErrorLevel = TestRunnerErrorLevel.Error
184
NUnitXmlOutputPath = Some resultsOutputPath
185
Parallel = ParallelMode.NoParallelization
186
- TimeOut = TimeSpan.FromMinutes(20.0)
+ TimeOut = TimeSpan.FromDays(1.0)
187
IncludeTraits = includeTraits
188
})
189
)
190
191
Target "TestNetStandard16" (fun _ ->
192
for project in dotNetTestProjects do
193
+ DotnetRestore id project
194
let args = sprintf "test %s" project
195
let result = Dotnet DotnetOptions.Default args
196
if not result.OK then failwithf "dotnet test failed with code %i" result.ExitCode
0 commit comments