kishikawakatsumi / xcresulttool

A GitHub Action that generates a human-readable test report from the Xcode result bundle and shows it on GitHub Checks.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Don't fail on missing .xcresult files if multiple are passed

benkay opened this issue · comments

We have multiple test steps, and as a result end up with multiple .xcresult files.
I tried passing all the result bundle paths to a single xcresulttool action, but if not all the .xcresult files have been generated for a run, then the action immediately fails with a no such file or directory error.

This is a problem since if some test steps are skipped due to an earlier failure, not all of the possible .xcresult files will be generated, making the ability to pass multiple result bundles to the same xcresulttool step useless to us

Have you tried continue-on-failure?

    - name: Any fallible 
      run: curl --fail www.blah.com
      continue-on-error: true