First automatic analysis failed after account creation

Analysis ID “b4232869-7104-46cb-a5c1-2ad8b7856b5b”

.sonarcloud.properties file:

# Path is relative to the sonar-project.properties file. Replace "\" by "/" on Windows.

sonar.sources=src\

sonar.exclusions=**\frontend\static\assets\compressed\**\*,**\fonts\**\*,**\tests\**\*,**\migrations\**\*

# Encoding of the source code. Default is default system encoding

#sonar.sourceEncoding=UTF-8

sonar.issue.ignore.multicriteria=e1

sonar.issue.ignore.multicriteria.e1.ruleKey=python:S3457

sonar.issue.ignore.multicriteria.e1.resourceKey=**/tests/**/*

Hi,

Can you provide the approximate date/timestamp of this failure?

 
Thx,
Ann

Hi @florent85

Here is the error we have on our side:

ERROR: Invalid value of sonar.sources for <your project>
ERROR: Wildcards ** and * are not supported in "sonar.sources" and "sonar.tests" properties. "sonar.sources" and "sonar.tests" properties support only comma separated list of directories. Use "sonar.exclusions/sonar.inclusions" and "sonar.test.exclusions/sonar.test.inclusions" to further filter files in "sonar.sources" and "sonar.tests" respectively. Please refer to SonarCloud documentation for more details.

This is probably because you are using backward slashes in your .sonarcloud.properties file. Please replace them all with forward slashes (/) or use proper escaping (\\).