diff --git a/dev/bots/test.dart b/dev/bots/test.dart index 6dd8c3ae518..e55847a04a7 100644 --- a/dev/bots/test.dart +++ b/dev/bots/test.dart @@ -4,7 +4,6 @@ import 'dart:async'; import 'dart:io'; -import 'dart:math' as math; import 'package:path/path.dart' as path; @@ -230,9 +229,7 @@ Future _pubRunTest( String testPath, bool enableFlutterToolAsserts = false }) { - final List args = ['run', 'test', '-rcompact']; - final int concurrency = math.max(1, Platform.numberOfProcessors - 1); - args.add('-j$concurrency'); + final List args = ['run', 'test', '-rcompact', '-j1']; if (!hasColor) args.add('--no-color'); if (testPath != null)