Skip to content

Instantly share code, notes, and snippets.

@kako-nawao
Created February 22, 2016 16:43
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save kako-nawao/478a49fe60765b283556 to your computer and use it in GitHub Desktop.
Save kako-nawao/478a49fe60765b283556 to your computer and use it in GitHub Desktop.
SonarQube project properties sample
# Main SonarQube project information
sonar.projectKey=com.example:some-project
sonar.projectName=some-project
sonar.projectVersion=0.0.1
# Source is everything minus typical django project and venv/ (CI server)
sonar.sources=.
sonar.exclusions=manage.py,tracker/**,apps/**/migrations/**,static/libs/**,venv/**
# Report paths (test results and coverage)
sonar.python.xunit.reportPath=test-results.xml
sonar.python.coverage.reportPath=test-coverage.xml
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment