Add --disable-parallel to dotnet-new.Tests

Added to a "restore" executed via string literal. It's present in RestoreCommand used by the other tests already.
This commit is contained in:
Davis Goodin 2018-08-17 12:52:23 -05:00
parent d13334ad0c
commit 6152eaabcf

View file

@ -62,7 +62,7 @@ namespace Microsoft.DotNet.New.Tests
new TestCommand("dotnet")
.WithWorkingDirectory(rootPath)
.Execute($"restore")
.Execute($"restore --disable-parallel")
.Should().Pass();
var buildResult = new TestCommand("dotnet")