-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
19 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -188,17 +188,30 @@ jobs: | |
shell: bash | ||
|
||
# https://github.com/EnricoMi/publish-unit-test-result-action?tab=readme-ov-file#permissions | ||
# | ||
# GitHub Summary | ||
# Test Results | ||
# 4 files 4 suites 1s ⏱️ | ||
# 22 tests 22 ✅ 0 💤 0 ❌ | ||
# 23 runs 23 ✅ 0 💤 0 ❌ | ||
- name: Publish Test Results | ||
# Test Results | ||
# 4 files 4 suites 1s ⏱️ | ||
# 22 tests 22 ✅ 0 💤 0 ❌ | ||
# 23 runs 23 ✅ 0 💤 0 ❌ | ||
- name: Publish Test Summary | ||
uses: EnricoMi/[email protected] | ||
if: always() | ||
with: | ||
files: | | ||
${{ env.testresults_in_trx_files }} | ||
check_name: "Test Summary" | ||
|
||
# https://github.com/dorny/test-reporter?tab=readme-ov-file | ||
# | ||
# | ||
- name: Publish Test Detail Report | ||
uses: dorny/[email protected] | ||
if: always() | ||
with: | ||
name: Test Detail Report | ||
path: "${{ env.testresults_in_trx_files }}" | ||
reporter: dotnet-trx | ||
|
||
# # https://github.com/irongut/CodeCoverageSummary | ||
# - name: Publish Code Coverage Report | ||
|
@@ -230,15 +243,7 @@ jobs: | |
# path: ${{ env.coverage_out_cobertura_file }} | ||
# retention-days: 5 | ||
|
||
# 솔루션 테스트 상세 보고서 생성 | ||
- name: Create test detail report | ||
uses: dorny/[email protected] | ||
if: always() | ||
with: | ||
name: Test Detail Report | ||
#path: "tests/**/logs.trx" | ||
path: "${{ env.testresults_in_trx_files }}" | ||
reporter: dotnet-trx | ||
|
||
|
||
# # dotnet-coverage 도구 설치 | ||
# - name: Install dotnet-coverage tool | ||
|