Skip to content

Commit 4386f3c

Browse files
committed
fix: Use semicolons instead of commas for CoverletOutputFormat
MSBuild interprets commas as property separators on command line. Use URL-encoded semicolons (%3b) and quotes to pass multiple formats correctly.
1 parent 8f076cc commit 4386f3c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/coverage.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,15 +78,15 @@ jobs:
7878
--no-build `
7979
--verbosity normal `
8080
/p:CollectCoverage=true `
81-
/p:CoverletOutputFormat=cobertura,json,opencover `
81+
"/p:CoverletOutputFormat=cobertura%3bjson%3bopencover" `
8282
/p:CoverletOutput=./TestResults/coverage/
8383
8484
dotnet test tests/PonziTech.BitVM.IntegrationTests/PonziTech.BitVM.IntegrationTests.csproj `
8585
--configuration ${{ env.CONFIGURATION }} `
8686
--no-build `
8787
--verbosity normal `
8888
/p:CollectCoverage=true `
89-
/p:CoverletOutputFormat=cobertura,json,opencover `
89+
"/p:CoverletOutputFormat=cobertura%3bjson%3bopencover" `
9090
/p:CoverletOutput=./TestResults/coverage/
9191
9292
- name: Merge Coverage Reports

0 commit comments

Comments
 (0)