@@ -209,8 +209,7 @@ def ios_application_resources_test_suite(name):
209209 plist_test_values = {
210210 "CFBundleIcons:CFBundlePrimaryIcon:CFBundleIconName" : "app_icon" ,
211211 },
212- # Skip CI until CI is on Xcode 26
213- tags = [name ] + common .fixture_tags + common .skip_ci_tags ,
212+ tags = [name ] + common .fixture_tags ,
214213 )
215214
216215 # Test a failure when the new icon composer bundles for Xcode 26 are mixed with a set of asset \
@@ -222,8 +221,7 @@ def ios_application_resources_test_suite(name):
222221 Found .appiconset files among the assigned app_icons, which are ignored when Icon \
223222 Composer .icon bundles are present.
224223 """ ,
225- # Skip CI until CI is on Xcode 26
226- tags = [name ] + common .skip_ci_tags ,
224+ tags = [name ],
227225 )
228226
229227 # Tests that icon bundles alone will generate legacy assets when the minimum_os_version is lower
@@ -242,8 +240,7 @@ def ios_application_resources_test_suite(name):
242240 "CFBundleIcons:CFBundlePrimaryIcon:CFBundleIconFiles:0" : "app_icon60x60" ,
243241 "CFBundleIcons:CFBundlePrimaryIcon:CFBundleIconName" : "app_icon" ,
244242 },
245- # Skip CI until CI is on Xcode 26
246- tags = [name ] + common .fixture_tags + common .skip_ci_tags ,
243+ tags = [name ] + common .fixture_tags ,
247244 )
248245
249246 # Tests that icon composer icons must be provided when the minimum_os_version is 26.0 or higher.
@@ -256,8 +253,7 @@ Legacy .appiconset files should not be used on iOS/macOS/watchOS 26+.
256253These platforms prefer Icon Composer .icon bundles. .appiconset files are only needed for rendering icons in iOS/macOS/watchOS prior to 26.
257254
258255Found the following legacy .appiconset files: """ ,
259- # Skip CI until CI is on Xcode 26
260- tags = [name ] + common .skip_ci_tags ,
256+ tags = [name ],
261257 )
262258
263259 # Test a failure when new icon composer bundles for Xcode 26 are mixed with a set of asset
@@ -269,8 +265,7 @@ Found the following legacy .appiconset files: """,
269265 Found .appiconset files among the assigned app_icons, which are ignored when Icon \
270266 Composer .icon bundles are present.
271267 """ ,
272- # Skip CI until CI is on Xcode 26
273- tags = [name ] + common .skip_ci_tags ,
268+ tags = [name ],
274269 )
275270
276271 # Tests that icon composer icons will be flagged when building against Xcode 16 instead of 26.
@@ -279,9 +274,8 @@ Found the following legacy .appiconset files: """,
279274 target_under_test = "//test/starlark_tests/targets_under_test/ios:app_with_icon_bundle_only_for_low_minimum_os_version" ,
280275 expected_error = """
281276Found Icon Composer .icon bundles among the assigned app_icons. These are only supported on Xcode 26 or later.""" ,
282- tags = [
283- name ,
284- ] + common .skip_ci_tags ,
277+ # Skip on CI since we no longer run tests using Xcode 16.
278+ tags = [name ] + common .skip_ci_tags ,
285279 )
286280
287281 # Tests that the launch storyboard is bundled with the application and that
0 commit comments