Skip to content

Commit ea7c653

Browse files
fix: report
1 parent 25e56f4 commit ea7c653

File tree

2 files changed

+4
-11
lines changed

2 files changed

+4
-11
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -43,20 +43,13 @@ jobs:
4343
- name: Run Unit Tests
4444
run: dotnet test --configuration Release --no-build --verbosity normal --logger "junit;LogFilePath=../results/test-results.xml"
4545

46-
- name: kak
47-
run: |
48-
pwd
49-
ls
50-
cd results
51-
ls
52-
5346
# - name: Run Coyote Tests
5447
# run: coyote test --recursive
5548

5649
- name: Test Report
5750
uses: dorny/test-reporter@v1
5851
if: always()
5952
with:
60-
name: test-results
53+
name: Test Report
6154
path: "**/test-results.xml"
6255
reporter: java-junit

.github/workflows/nuget.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,14 +40,14 @@ jobs:
4040
run: dotnet build --configuration Release /p:Version=${{ steps.get_version.outputs.VERSION }}
4141

4242
- name: Run Unit Tests
43-
run: dotnet test --configuration Release --no-build --verbosity --logger "junit;LogFilePath=../results/test-results.xml"
43+
run: dotnet test --configuration Release --no-build --verbosity normal --logger "junit;LogFilePath=../results/test-results.xml"
4444

4545
- name: Test Report
4646
uses: dorny/test-reporter@v1
4747
if: always()
4848
with:
49-
name: test-results
50-
path: "../results/**/*.xml"
49+
name: Test Report
50+
path: "**/test-results.xml"
5151
reporter: java-junit
5252

5353
- name: Build NuGet Package

0 commit comments

Comments
 (0)