diff --git a/Jenkinsfile b/Jenkinsfile
index 2ebcec55c982d4f43fbebff032fda6fb0a36f591..68c013838c2559df956d26ca7184082bed028aef 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -94,7 +94,7 @@ pipeline {
onlyStable: false,
sourceEncoding: 'ASCII',
zoomCoverageChart: false,
- lineCoverageTargets: "90.0, 0, 0"])
+ lineCoverageTargets: "0.0, 0, 0"])
archiveArtifacts 'coverage.xml'
}
}
@@ -107,6 +107,7 @@ pipeline {
archiveArtifacts 'p*.*'
archiveArtifacts 'test-reports/*.*'
junit 'test-reports/*.xml'
+ recordIssues enabledForFailure: true, tools: [pyLint(pattern: 'pylint.txt'), pep8(pattern: 'pycodestyle.txt')], qualityGates: [[threshold: 1, type: 'TOTAL', unstable: true]]
}
}
aborted {