Closed1

CircleCI上でiOSのE2Eテストの自動実行環境を組んでみる際のメモ

ころむにーころむにー

XCUITestのaddメソッドでテスト結果に添付したファイルは、以下のようにすればCircleCIのアーティファクトとして保持できる。

      - run:
          name: Extract attachments
          command: |
            brew install chargepoint/xcparse/xcparse
            find ~/Library/Developer/Xcode/DerivedData -name *.xcresult
            test_result_path="$(find ~/Library/Developer/Xcode/DerivedData -name *.xcresult)"
            xcparse attachments "$test_result_path" reports/recordings
          when: on_fail
      - store_artifacts:
          path: reports
このスクラップは5ヶ月前にクローズされました