Our code lines quota has been suddenly consumed in the last two weeks due to code coverage files (xml) being considered as code with the new scanAll default.
I would expect scanAll to automatically ignore any files indicated as reports using config such as sonar.cs.opencover.reportsPaths
.
The closest issue I can find is: Multi-Language Support: Ignore bin/ and obj/ · Issue #2110 · SonarSource/sonar-scanner-msbuild · GitHub which argues that non-code folders should be ignored.
We don’t gitignore our code coverage folder because it never exists on our local machines.
This is in Gitlab CI/CD, when using the latest dotnet-sonarscanner
dotnet tool installed from nuget, and using sonarcloud.
- dotnet tool run dotnet-sonarscanner begin
/o:"$SONAR_ORG_KEY"
/k:"$SONAR_PROJECT_KEY"
/d:"sonar.token=$SONAR_TOKEN"
/d:"sonar.host.url=$SONAR_HOST_URL"
/d:"sonar.qualitygate.wait=true"
/d:"sonar.cs.opencover.reportsPaths=$CI_PROJECT_DIR/results/**/coverage.opencover.xml"
/d:"sonar.cs.vstest.reportsPaths=$CI_PROJECT_DIR/results/*.trx"