We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6f78a30 commit d611f5cCopy full SHA for d611f5c
1 file changed
.github/workflows/ci.yml
@@ -64,18 +64,19 @@ jobs:
64
/o:"visus" \
65
/d:sonar.token="$SONAR_TOKEN" \
66
/d:sonar.host.url="https://sonarcloud.io" \
67
- /d:sonar.cs.vscoveragexml.reportsPaths="**/TestResults/**/*.xml" \
+ /d:sonar.cs.vscoveragexml.reportsPaths="**/TestResults/**/coverage.xml" \
68
/d:sonar.cs.vstest.reportsPaths="**/TestResults/**/*.trx"
69
70
- name: Build
71
run: dotnet build -c Release --no-restore
72
73
- name: Run tests
74
run: |
75
- dotnet test -c Release --no-build --no-restore -- \
+ dotnet test -c Release --no-build --no-restore \
76
--coverage \
77
+ --coverage-output coverage.xml \
78
--coverage-output-format xml \
- --report-trx
79
+ -- --report-trx
80
81
- name: Upload test results
82
if: always()
0 commit comments