Skip to content

Commit

Permalink
Disable parallel integration test run in cake script
Browse files Browse the repository at this point in the history
  • Loading branch information
christianhelle committed Dec 3, 2020
1 parent fbb4fdb commit 9098e2f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/build.cake
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ Task("Run-Integration-Tests")
VSTest("./**/bin/**/*.IntegrationTests.dll",
new VSTestSettings
{
Parallel = true,
Parallel = false,
EnableCodeCoverage = true,
SettingsFile = File("./Tests.runsettings")
});
Expand All @@ -112,7 +112,7 @@ Task("Run-All-Tests")
VSTest("./**/bin/**/*Tests.dll",
new VSTestSettings
{
Parallel = true,
Parallel = false,
EnableCodeCoverage = true,
SettingsFile = File("./Tests.runsettings")
});
Expand Down

0 comments on commit 9098e2f

Please sign in to comment.