Skip to content
Snippets Groups Projects
Commit 43ef54d5 authored by Pierre Smeyers's avatar Pierre Smeyers
Browse files

Merge branch '33-create-a-pylint-report-file-for-sonarqube' into 'master'

Resolve "Create a pylint report file for SonarQube"

Closes #33

See merge request to-be-continuous/python!45
parents 10457484 ba739988
No related branches found
No related tags found
No related merge requests found
......@@ -73,6 +73,7 @@ It is bound to the `build` stage, and uses the following variables:
This job produces the following artifacts, kept for one day:
* Code quality json report in code climate format.
* Pylint report for SonarQube (if `SONAR_URL` is defined).
### Test jobs
......
......@@ -599,6 +599,12 @@ py-lint:
# success: generate empty codeclimate report (required by GitLab :( )
echo "[]" > reports/pylint-codeclimate.json
fi
- |
if [ -n "$SONAR_URL" ]
then
# SonarQube is configured, export analysis report
_run pylint --ignore=.cache --output-format=parseable ${PYLINT_ARGS} ${PYLINT_FILES:-$(find -type f -name "*.py")} > reports/pylint.txt
fi
artifacts:
name: "$CI_JOB_NAME artifacts from $CI_PROJECT_NAME on $CI_COMMIT_REF_SLUG"
expire_in: 1 day
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment