File tree Expand file tree Collapse file tree 1 file changed +2
-8
lines changed Expand file tree Collapse file tree 1 file changed +2
-8
lines changed Original file line number Diff line number Diff line change @@ -26,18 +26,12 @@ jobs:
26
26
run : dotnet build '${{ vars.BUILD_SOLUTION }}' -c ${{ matrix.config }}
27
27
- name : Test solution with ${{ matrix.config }} configuration
28
28
run : |
29
- dotnet test '${{ vars.BUILD_SOLUTION }}' --no-build -c ${{ matrix.config }} --verbosity normal --logger junit --results-directory "TestResults-${{ matrix.os }}-${{ matrix.config }}" -- RunConfiguration.TestSessionTimeout=${{ vars.MIGRATIONSDK_TEST_CANCELLATION_TIMEOUT_MILLISECONDS }}
29
+ dotnet test '${{ vars.BUILD_SOLUTION }}' --no-build -c ${{ matrix.config }} --verbosity normal --logger trx --results-directory "TestResults-${{ matrix.os }}-${{ matrix.config }}" -- RunConfiguration.TestSessionTimeout=${{ vars.MIGRATIONSDK_TEST_CANCELLATION_TIMEOUT_MILLISECONDS }}
30
30
- name : Upload test results
31
31
# Use always() to always run this step to publish test results when there are test failures
32
32
if : ${{ always() }}
33
33
uses : actions/upload-artifact@v4
34
34
with :
35
35
name : dotnet-results-${{ matrix.os }}-${{ matrix.config }}
36
36
path : TestResults-${{ matrix.os }}-${{ matrix.config }}
37
- if-no-files-found : error
38
- - name : Publish Unit Test Results
39
- uses : test-summary/action@v2
40
- with :
41
- paths : TestResults-${{ matrix.os }}-${{ matrix.config }}/*.xml
42
- show : " fail, skip"
43
-
37
+ if-no-files-found : error
You can’t perform that action at this time.
0 commit comments