@@ -249,10 +249,9 @@ class IntegrationTestsManager {
249
249
buildModes = < String > {mode};
250
250
}
251
251
} else {
252
- // TODO(nurhan): Enable `release` when recipe is sharded.
253
252
buildModes = _browser == 'chrome'
254
- ? {'debug' , 'profile' }
255
- : {'profile' };
253
+ ? {'debug' , 'profile' , 'release' }
254
+ : {'profile' , 'release' };
256
255
}
257
256
return buildModes;
258
257
}
@@ -632,28 +631,9 @@ const Map<String, List<String>> blockedTestsListsMapForModes =
632
631
'treeshaking_integration.dart' ,
633
632
'text_editing_integration.dart' ,
634
633
'url_strategy_integration.dart' ,
635
-
636
- // TODO(yjbanov): https://github.com/flutter/flutter/issues/71583
637
- // The following tests are blocked to reduce the load on the build bot.
638
- // The bot currently frequently exceeds the timeout limit.
639
- 'image_loading_integration.dart' ,
640
- 'platform_messages_integration.dart' ,
641
- 'profile_diagnostics_integration.dart' ,
642
- 'scroll_wheel_integration.dart' ,
643
634
],
644
635
'profile' : [],
645
- 'release' : [
646
- // TODO(yjbanov): https://github.com/flutter/flutter/issues/71583
647
- // The following tests are blocked to reduce the load on the build bot.
648
- // The bot currently frequently exceeds the timeout limit.
649
- 'image_loading_integration.dart' ,
650
- 'platform_messages_integration.dart' ,
651
- 'profile_diagnostics_integration.dart' ,
652
- 'scroll_wheel_integration.dart' ,
653
- 'text_editing_integration.dart' ,
654
- 'treeshaking_integration.dart' ,
655
- 'url_strategy_integration.dart' ,
656
- ],
636
+ 'release' : [],
657
637
};
658
638
659
639
/// Tests blocked for one of the rendering backends.
@@ -676,11 +656,5 @@ const Map<String, List<String>> blockedTestsListsMapForRenderBackends =
676
656
// This test failed on canvaskit on all three build modes.
677
657
'canvaskit' : [
678
658
'image_loading_integration.dart' ,
679
- 'platform_messages_integration.dart' ,
680
- 'profile_diagnostics_integration.dart' ,
681
- 'scroll_wheel_integration.dart' ,
682
- 'text_editing_integration.dart' ,
683
- 'treeshaking_integration.dart' ,
684
- 'url_strategy_integration.dart' ,
685
659
],
686
660
};
0 commit comments