Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Temporarily reduce e2e test matrix to stop flaky web engine builds #22824

Merged
merged 2 commits into from
Dec 2, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 20 additions & 1 deletion lib/web_ui/dev/integration_tests_manager.dart
Original file line number Diff line number Diff line change
Expand Up @@ -632,9 +632,28 @@ const Map<String, List<String>> blockedTestsListsMapForModes =
'treeshaking_integration.dart',
'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.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is there an issue filed to track re-enabling these that you can note here?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

// 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': [
// 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',
'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.
Expand Down