Skip to content

Commit 37649e7

Browse files
authored
Update ci.yaml
1 parent c8f1522 commit 37649e7

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/ci.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ jobs:
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/

0 commit comments

Comments
 (0)