We are using SonarCloud analysis on GitHub. I would like to ignore checks made for duplicate text found in test files only. I’m trying to do this using the sonar-project.properties files and was trying to read the documentation on Analysis Scope. Honestly, it’s a tough read.
Is this correct? But if I understand correctly, this would ignore the complete duplication check for tests, right? Is there a way to scope this even further to just ignore duplicate Text?
Disclaimer: I don’t have access to project administration so I’m looking for using this property setting instead. Reading the docs, I think that’s the right way?
Can you give an example of a duplicate text warning (a screenshot would be great)? For CPD detection (copy-paste detection), I’m pretty sure we ignore string literals.
Thanks for following up. I think I see what’s going on here.
go:S1192 and sonar.cpd.exclusions are unrelated. The former is a rule detecting duplicate string literals, and the latter is a measurement detecting duplicate… well, everything except string literals.
So what you probably want to do is to turn off S1192 on test files. There are a couple ways of going about this.
Most rules are excluded on test files by default, as long as sonar.tests and sonar.test.inclusions are configured to index test files as test files. You can see an example here
If you don’t want to do that (because you see value in other rules being applied to test files), you can ignore specific rules on specific files. This is easiest to set in the Project Administration UI, but also possible via analysis parameters.
humm, humm, this did not, in the end, ignore the warnings. It’s a Go based project. Any trouble we should be aware off? Also, I called the file sonar-project.properties but some call it .sonarcloud.properties. Which one is it?
It depends if you’re using Automatic Analysis (.sonarcloud.properties) or CI-Based Analysis (sonar-project.properties).
If it’s the former – you won’t be able to set sonar.issue.ignore.multicriteria in a config file and you’ll have to ask a project administrator to set them in the project settings.
I don’t know. I’m checking the stats and it looks okay. I’m not sure how much it is omitting from testing the _test files. I feel like now it’s ignore it completely, which is not so good. But it’s difficult to test the property file because it seems it’s only being picked up once it’s merged to main.