File tree Expand file tree Collapse file tree 1 file changed +2
-13
lines changed
Expand file tree Collapse file tree 1 file changed +2
-13
lines changed Original file line number Diff line number Diff line change @@ -26,21 +26,10 @@ jobs:
2626 run : dotnet build --configuration Release --no-restore
2727
2828 - name : Run unit tests
29- run : dotnet test --filter "Category=Unit" --configuration Release --no-build --verbosity normal --logger "trx;LogFileName=unit-test-results.trx"
30- continue-on-error : true
29+ run : dotnet test --filter "Category=Unit" --configuration Release --no-build --verbosity normal
3130
3231 - name : Run integration tests
33- run : dotnet test --filter "Category=Integration" --configuration Release --no-build --verbosity normal --logger "trx;LogFileName=integration-test-results.trx"
34- continue-on-error : true
35-
36- - name : Publish test results
37- uses : dorny/test-reporter@v1
38- if : always()
39- with :
40- name : Test Results
41- path : ' **/TestResults/*.trx'
42- reporter : dotnet-trx
43- fail-on-error : false
32+ run : dotnet test --filter "Category=Integration" --configuration Release --no-build --verbosity normal
4433
4534 - name : Package Lambda function
4635 if : github.event_name == 'push' && (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/develop')
You can’t perform that action at this time.
0 commit comments