File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change 8686 run : |
8787 dotnet test --configuration ${{ env.buildConfiguration }} --logger trx -r ${{ env.TESTS_RESULTS_FOLDER }}/Unit \
8888 /p:CollectCoverage=true /p:CoverletOutputFormat=cobertura \
89- --filter "FullyQualifiedName~LoRaWanTest|FullyQualifiedName~LoRaWan.NetworkServer.Test|FullyQualifiedName~LoraKeysManagerFacade.Test" \
89+ --filter \ "FullyQualifiedName~LoRaWanTest|FullyQualifiedName~LoRaWan.NetworkServer.Test|FullyQualifiedName~LoraKeysManagerFacade.Test\ " \
9090 LoRaEngine
9191
9292 # Upload test results as artifact
@@ -98,16 +98,19 @@ jobs:
9898
9999 # Pull Redis Cache docker image
100100 - name : Pulling Redis Cache image
101+ if : ${{ always() }}
101102 run : docker pull redis:5.0.4-alpine
102103
103104 # Run integration tests
104105 - name : Run integration tests
106+ if : ${{ always() }}
105107 run : |
106108 dotnet test --configuration ${{ env.buildConfiguration }} --logger trx -r ${{ env.TESTS_RESULTS_FOLDER }}/Integration \
107109 /p:CollectCoverage=true /p:CoverletOutputFormat=cobertura /p:ExcludeByFile="**/Tests/" \
108110 ${{ env.TESTS_FOLDER }}/Integration/LoRaWan.Tests.Integration.csproj
109111
110112 - name : Upload to Codecov test reports
113+ if : ${{ always() }}
111114 uses : codecov/codecov-action@v2
112115 with :
113116 directory : Tests/
You can’t perform that action at this time.
0 commit comments