Commit a8487722 authored by Ian Hickson's avatar Ian Hickson Committed by GitHub

Run flutter_tools tests serially (#10643)

We suspect maybe recent failures are caused by race conditions from
running flutter_tools tests in parallel.
parent 37e32d5a
......@@ -118,7 +118,7 @@ Future<Null> _pubRunTest(
String workingDirectory, {
String testPath,
}) {
final List<String> args = <String>['run', 'test', '-rexpanded'];
final List<String> args = <String>['run', 'test', '-j1', '-rexpanded'];
if (testPath != null)
args.add(testPath);
return _runCommand(pub, args, workingDirectory: workingDirectory);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment