Skip to content
Snippets Groups Projects
Commit dbfa1352 authored by Viktor Vorobev's avatar Viktor Vorobev Committed by Ugo Albanese
Browse files

Merged in NRRPLT-8101-pylint-warning (pull request #25)

[NRRPLT-8101] Add pylint warning

Approved-by: Ugo Albanese
Approved-by: Vahid Zolfaghari
parent 82b7070f
No related branches found
No related tags found
No related merge requests found
...@@ -116,7 +116,7 @@ pipeline { ...@@ -116,7 +116,7 @@ pipeline {
onlyStable: false, onlyStable: false,
sourceEncoding: 'ASCII', sourceEncoding: 'ASCII',
zoomCoverageChart: false, zoomCoverageChart: false,
lineCoverageTargets: "90.0, 0, 0"]) lineCoverageTargets: "0.0, 0, 0"])
archiveArtifacts 'coverage.xml' archiveArtifacts 'coverage.xml'
} }
} }
...@@ -129,6 +129,7 @@ pipeline { ...@@ -129,6 +129,7 @@ pipeline {
archiveArtifacts 'p*.*' archiveArtifacts 'p*.*'
archiveArtifacts 'test-reports/*.*' archiveArtifacts 'test-reports/*.*'
junit 'test-reports/*.xml' junit 'test-reports/*.xml'
recordIssues enabledForFailure: true, tools: [pyLint(pattern: 'pylint.txt'), pep8(pattern: 'pycodestyle.txt')], qualityGates: [[threshold: 1, type: 'TOTAL', unstable: true]]
} }
} }
aborted { aborted {
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment