kishikawakatsumi / xcresulttool

A GitHub Action that generates a human-readable test report from the Xcode result bundle and shows it on GitHub Checks.
MIT License
361 stars 68 forks source link

Xcode 15 - UI test bundle includes screen shots but are not present in GH Action report #754

Open piofusco opened 1 year ago

piofusco commented 1 year ago

We recently updated our project to use Xcode 15. We have UI tests that run for each PR. Previously, the report generated from xcresulttool included screenshots. After updating to Xcode 15, the screenshots are no longer present. Here's a screenshot from a recent job:

image

I have double checked the screenshots are present in the bundle itself running the same command we use to run our UI tests locally (with Fastlane scan - it basically looks like this):

desc "Run UI Tests"
lane :ui_tests do
  reset_simulator_contents

  run_tests(
    clean: true,
    cloned_source_packages_path: "SPMCache",
    fail_build: false,
    project: XCODE_PROJ,
    result_bundle: true,
    scheme: "UITests"
  )
end

When I open the bundle this command generates in Xcode, I can see screenshots:

image

piofusco commented 1 year ago

Any updates on this?

piofusco commented 6 months ago

Bumping this

piofusco commented 3 months ago

Bumping this

piofusco commented 1 month ago

Almost been a year now