SonarScanner for Python (Beta)
This project is in beta and APIs are subject to change. These changes include configuration parameter names. We don't recommend using this scanner in production environments.
pysonar-scanner is a wrapper around SonarScanner CLI, available on PyPI.
Prerequisites
- Python 3.8 or later
Installing the SonarScanner for Python
To install with pip, run the following command:
Once installed, you can configure the analysis and run the scanner from the command line. It assumes a Running SonarQube instance with a Python project.
Using the SonarScanner for Python
Setting the analysis properties
For the analysis to run, you'll need to define analysis properties. There are multiple ways of providing them, described below in descending order of priority:
- Through CLI arguments to the
pysonar-scanner
command - Under the
[tool.sonar]
key of thepyproject.toml
file - Through common properties extracted from the
pyproject.toml
file - In a dedicated
sonar-project.properties
file - Through environment variables
Using CLI arguments
Analysis properties can be provided as CLI arguments to the pysonar-scanner
command. They follow the same convention as when running the SonarScanner CLI directly. This means that analysis properties provided that way should be prepended with -D
, for instance:
You can use all the arguments allowed by the SonarScanner CLI.
With a pyproject.toml file
Inside a pyproject.toml
, Sonar analysis properties can be defined under the tool.sonar
table.
For a list of analysis parameters, see Analysis parameters.
In the pyproject.toml
file, the prefix sonar.
for parameter keys should be omitted. For example, sonar.scm.provider
in the documentation will become scm.provider
in the pyproject.toml
file.
By default, the scanner expects the pyproject.toml
file to be present in the current directory. However, its path can be provided manually through the toml.path
(PYSCAN-40) CLI argument as well as through the sonar.projectHome
argument. For instance:
Or:
Using project properties extracted from the pyproject.toml file
When a pyproject.toml
file is available, it's possible to set the -read-project-config
flag to allow the scanner to deduce analysis properties from the project configuration.
This is currently supported only for projects using poetry
.
The Sonar scanner will then use the project name and version defined through Poetry, they won't have to be duplicated under a dedicated tool.sonar
section.
With a sonar-project.properties file
The analysis can be configured with a sonar-project.properties
file, exactly like when you analyze with SonarScanner CLI:
Through environment variables
It is also possible to define configure the scanner through environment variables:
Installing from testPyPI
To install the latest pre-released version of SonarScanner for Python. Execute the following command:
Was this page helpful?