Slide 10
Slide 10 text
設定①: テスト結果のアップロード
store_artifactsを使用する方法
- run:
name: Save test results
command: |
mkdir -p ~/test-results/junit/
find . -type f -regex ".*/build/test-results/.*xml" -exec cp {}
~/test-results/junit/ \;
when: always
- store_artifacts:
path: ~/test-results
destination: circleci-docs
JUnitのテスト結果はそれぞれの
モジュール内にxmlファイルが作られるのでま
とめて ~/test-resultsにコピーする