Add SonarQube to Pipeline #15

Merged
inex merged 2 commits from sonarqube into master 2022-09-16 10:31:52 +03:00
1 changed files with 12 additions and 7 deletions

View File

@ -2,18 +2,23 @@ kind: pipeline
type: exec
name: default
platform:
os: linux
arch: amd64
steps:
- name: test
- name: Run Tests and Generate Coverage Report
commands:
- coverage run -m pytest -q
- coverage xml
- name: bandit
- sonar-scanner -Dsonar.projectKey=SelfPrivacy-REST-API -Dsonar.sources=. -Dsonar.host.url=http://analyzer.lan:9000 -Dsonar.login="$SONARQUBE_TOKEN"
environment:
SONARQUBE_TOKEN:
from_secret: SONARQUBE_TOKEN
- name: Run Bandit Checks
commands:
- bandit -ll -r selfprivacy_api
- name: formatting
- name: Run Code Formatting Checks
commands:
- black --check .
node:
server: builder