From ce8dd1c6ede742cc35f2872c48de5bc544dc0bae Mon Sep 17 00:00:00 2001 From: Stuart Morgan Date: Mon, 10 May 2021 15:00:43 -0400 Subject: [PATCH 1/2] Exclude ios_platform_images from integration tests It does not currently have an integration test, so must be explicitly excluded due to recent tooling changes. See https://github.com/flutter/flutter/issues/82208 --- .cirrus.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.cirrus.yml b/.cirrus.yml index 8ae5b384aee1..db309e45d567 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -206,8 +206,9 @@ task: PATH: $PATH:/usr/local/bin PLUGINS_TO_SKIP_XCTESTS: "integration_test" # in_app_purchase_ios is currently missing tests; see https://github.com/flutter/flutter/issues/81695 + # ios_platform_images is currently missing tests; see https://github.com/flutter/flutter/issues/82208 # sensor hangs on CI. - PLUGINS_TO_EXCLUDE_INTEGRATION_TESTS: "in_app_purchase_ios,sensors" + PLUGINS_TO_EXCLUDE_INTEGRATION_TESTS: "in_app_purchase_ios,ios_platform_images,sensors" matrix: PLUGIN_SHARDING: "--shardIndex 0 --shardCount 4" PLUGIN_SHARDING: "--shardIndex 1 --shardCount 4" From 4863ed64540472aa199c649a4136cc59f58577af Mon Sep 17 00:00:00 2001 From: Stuart Morgan Date: Mon, 10 May 2021 15:50:25 -0400 Subject: [PATCH 2/2] Also exclude file_selector on web --- .cirrus.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.cirrus.yml b/.cirrus.yml index db309e45d567..e3d6f7881382 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -168,7 +168,8 @@ task: - name: build-web+drive-examples env: # Currently missing; see https://github.com/flutter/flutter/issues/81982 - PLUGINS_TO_EXCLUDE_INTEGRATION_TESTS: "image_picker_for_web,shared_preferences_web,video_player_web" + # and https://github.com/flutter/flutter/issues/82211 + PLUGINS_TO_EXCLUDE_INTEGRATION_TESTS: "file_selector,image_picker_for_web,shared_preferences_web,video_player_web" matrix: CHANNEL: "master" CHANNEL: "stable"