Skip to content

Commit 0abf02f

Browse files
authored
Do not run web shard during tool_tests when subshard is missing (flutter#87385)
1 parent aae28e6 commit 0abf02f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

dev/bots/test.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,8 @@ Future<void> main(List<String> args) async {
140140
'framework_coverage': _runFrameworkCoverage,
141141
'framework_tests': _runFrameworkTests,
142142
'tool_tests': _runToolTests,
143-
'web_tool_tests': _runToolTests,
143+
// web_tool_tests is also used by HHH: https://dart.googlesource.com/recipes/+/refs/heads/master/recipes/dart/flutter_engine.py
144+
'web_tool_tests': _runWebToolTests,
144145
'tool_integration_tests': _runIntegrationToolTests,
145146
// All the unit/widget tests run using `flutter test --platform=chrome`
146147
'web_tests': _runWebUnitTests,
@@ -355,7 +356,6 @@ Future<void> _runToolTests() async {
355356
await selectSubshard(<String, ShardRunner>{
356357
'general': _runGeneralToolTests,
357358
'commands': _runCommandsToolTests,
358-
'web': _runWebToolTests,
359359
});
360360
}
361361

0 commit comments

Comments
 (0)