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

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

[NRRPLT-8101] pylint warnings added

Approved-by: Ugo Albanese
Approved-by: Vahid Zolfaghari
parent e30464cf
No related branches found
No related tags found
No related merge requests found
...@@ -94,7 +94,7 @@ pipeline { ...@@ -94,7 +94,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'
} }
} }
...@@ -107,6 +107,7 @@ pipeline { ...@@ -107,6 +107,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