Wants to use SonarQube with python web application,git and concourse halfpipeline

Problem statement:
I want to use SonarQube for code coverage with Python web application. When any developer push the code on git then halfpipe is automatically get executed. So when any developer push the code on git then sonarqube also reflected on concourse halfpipe.

Please help.

Hi,

Welcome to the community!

The docs should get you started.

 
HTH,
Ann

First of all thanks.
Details as follows:

  1. SonarQube8.1 2. SonarScanner4.2 3. IDE - PyCharm 4. Python3.9 5. Windows10
    I have run SonarQube and got a coverage report on local server. To achieve this I have done below steps.
  2. Start server by executing StartSonar.bat file
  3. Execute coverage run test_program_name to create coverage file and made changes into sonar-scanner.properties.
  4. run sonar-scanner.bat file
  5. check a output on localhost:9000

My issues are as follows:
How i can make changes so that it will be stored on GitHub and update the Concourse halfpipe whenever there is a change in code
Please guide. Thanks in advance.

Your version is past EOL. You should upgrade to either the latest version or the current LTS at your earliest convenience. Your upgrade path is:

8.1.2 → 8.9.2 → 9.1 (last step optional)

Regarding your actual question, you’ll need to pass the coverage report into analysis using the correct parameter.

 
Ann