File tree Expand file tree Collapse file tree 2 files changed +4
-9
lines changed Expand file tree Collapse file tree 2 files changed +4
-9
lines changed Original file line number Diff line number Diff line change @@ -88,16 +88,11 @@ jobs:
8888
8989 - name : Test (Ubuntu)
9090 if : startsWith(matrix.os, 'ubuntu')
91- run : dotnet test --no-build --verbosity normal -c Release -f ${{ matrix.dotnet-framework }} /p:CollectCoverage=true /p:CoverletOutputFormat=opencover /p:Exclude="[*.XUnit]*"
91+ run : dotnet test --no-build --verbosity normal -c Release -f ${{ matrix.dotnet-framework }}
9292
9393 - name : Test (Windows)
9494 if : startsWith(matrix.os, 'windows')
95- run : dotnet test --no-build --verbosity normal -c Release -f ${{ matrix.dotnet-framework }} --filter "DB!=SQLServer" /p:CollectCoverage=true /p:CoverletOutputFormat=opencover /p:Exclude="[*.XUnit]*"
96-
97- - name : Collect to Codecov
98- uses : codecov/codecov-action@v5
99- with :
100- token : ${{ secrets.CODECOV_TOKEN }}
95+ run : dotnet test --no-build --verbosity normal -c Release -f ${{ matrix.dotnet-framework }} --filter "DB!=SQLServer"
10196
10297 publish :
10398 needs : build
Original file line number Diff line number Diff line change @@ -88,11 +88,11 @@ jobs:
8888
8989 - name : Test (Ubuntu)
9090 if : startsWith(matrix.os, 'ubuntu')
91- run : dotnet test --no-build --verbosity normal -c Release -f ${{ matrix.dotnet-framework }} /p:CollectCoverage=true /p:CoverletOutputFormat=opencover /p:Exclude="[*.XUnit]*"
91+ run : dotnet test --no-build --verbosity normal -c Release -f ${{ matrix.dotnet-framework }}
9292
9393 - name : Test (Windows)
9494 if : startsWith(matrix.os, 'windows')
95- run : dotnet test --no-build --verbosity normal -c Release -f ${{ matrix.dotnet-framework }} --filter "DB!=SQLServer" /p:CollectCoverage=true /p:CoverletOutputFormat=opencover /p:Exclude="[*.XUnit]*"
95+ run : dotnet test --no-build --verbosity normal -c Release -f ${{ matrix.dotnet-framework }} --filter "DB!=SQLServer"
9696
9797 summary :
9898 needs : build
You can’t perform that action at this time.
0 commit comments