Skip to content

Commit 1e8f9b6

Browse files
committed
Do not run integration tests in parallel
This fixes the mysterious failing tests when running from the command line.
1 parent 29d70d4 commit 1e8f9b6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build/scripts/Testing.fsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ module Tests =
7373
|> Seq.map Paths.Quote
7474
|> Seq.iter(fun project ->
7575
Tooling.DotNet.Exec runtime TestFailure "." ["restore"; project;]
76-
Tooling.DotNet.Exec runtime TestFailure "." ["test"; project; "-xml"; Paths.Output("TestResults.xml")])
76+
Tooling.DotNet.Exec runtime TestFailure "." ["test"; project; "-parallel"; parallelization; "-xml"; Paths.Output("TestResults.xml")])
7777

7878
let RunUnitTests() =
7979
!! Paths.Source("Tests/project.json")

0 commit comments

Comments
 (0)