From 2bd1fdb9f0d7f8e8dfc82f78a010314ec409c3a4 Mon Sep 17 00:00:00 2001 From: Yegor Jbanov Date: Wed, 2 Dec 2020 09:38:38 -0800 Subject: [PATCH 1/2] reduce e2e test matrix --- lib/web_ui/dev/integration_tests_manager.dart | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/lib/web_ui/dev/integration_tests_manager.dart b/lib/web_ui/dev/integration_tests_manager.dart index d2b628c464397..460f9c3f0ce4c 100644 --- a/lib/web_ui/dev/integration_tests_manager.dart +++ b/lib/web_ui/dev/integration_tests_manager.dart @@ -632,9 +632,26 @@ const Map> blockedTestsListsMapForModes = 'treeshaking_integration.dart', 'text_editing_integration.dart', 'url_strategy_integration.dart', + + // The following tests are blocked to reduce the load on the build bot. + // The bot currently frequently exceeds the timeout limit. + 'image_loading_integration.dart', + 'platform_messages_integration.dart', + 'profile_diagnostics_integration.dart', + 'scroll_wheel_integration.dart', ], 'profile': [], - 'release': [], + 'release': [ + // The following tests are blocked to reduce the load on the build bot. + // The bot currently frequently exceeds the timeout limit. + 'image_loading_integration.dart', + 'platform_messages_integration.dart', + 'profile_diagnostics_integration.dart', + 'scroll_wheel_integration.dart', + 'text_editing_integration.dart', + 'treeshaking_integration.dart', + 'url_strategy_integration.dart', + ], }; /// Tests blocked for one of the rendering backends. From d2833944ba955b7654cdad8cf9269c51188c06ce Mon Sep 17 00:00:00 2001 From: Yegor Jbanov Date: Wed, 2 Dec 2020 09:59:26 -0800 Subject: [PATCH 2/2] add issue link --- lib/web_ui/dev/integration_tests_manager.dart | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/web_ui/dev/integration_tests_manager.dart b/lib/web_ui/dev/integration_tests_manager.dart index 460f9c3f0ce4c..253fbd1ffa5d5 100644 --- a/lib/web_ui/dev/integration_tests_manager.dart +++ b/lib/web_ui/dev/integration_tests_manager.dart @@ -633,6 +633,7 @@ const Map> blockedTestsListsMapForModes = 'text_editing_integration.dart', 'url_strategy_integration.dart', + // TODO(yjbanov): https://github.com/flutter/flutter/issues/71583 // The following tests are blocked to reduce the load on the build bot. // The bot currently frequently exceeds the timeout limit. 'image_loading_integration.dart', @@ -642,6 +643,7 @@ const Map> blockedTestsListsMapForModes = ], 'profile': [], 'release': [ + // TODO(yjbanov): https://github.com/flutter/flutter/issues/71583 // The following tests are blocked to reduce the load on the build bot. // The bot currently frequently exceeds the timeout limit. 'image_loading_integration.dart',