--disable-parallel in tests.

This commit is contained in:
Davis Goodin 2016-10-28 11:06:37 -05:00
parent 59a6c72be7
commit 6b361b8dad

View file

@ -14,13 +14,13 @@ namespace Microsoft.DotNet.Tools.Test.Utilities
public override CommandResult Execute(string args = "")
{
args = $"restore {args}";
args = $"restore {args} --disable-parallel";
return base.Execute(args);
}
public override CommandResult ExecuteWithCapturedOutput(string args = "")
{
args = $"restore {args}";
args = $"restore {args} --disable-parallel";
return base.ExecuteWithCapturedOutput(args);
}
}