We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c7c9884 commit 0d08c1eCopy full SHA for 0d08c1e
.pipeline
@@ -69,16 +69,14 @@ pipeline {
69
}
70
stage('pylint') {
71
steps {
72
- catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
73
- sh '''#!/bin/bash
74
- source ./venv/bin/activate
75
- < relevant-files.txt xargs -r pylint --output-format=json \
76
- > tests/unittests/output/pylint.json
77
- x=$?
78
- python ./tests/automation/pylint-json-to-html tests/unittests/output/pylint.json
79
- exit $x
80
- '''
81
- }
+ sh '''#!/bin/bash
+ source ./venv/bin/activate
+ < relevant-files.txt xargs -r pylint --output-format=json \
+ > tests/unittests/output/pylint.json
+ x=$?
+ python ./tests/automation/pylint-json-to-html tests/unittests/output/pylint.json
+ exit $x
+ '''
82
83
84
stage('bandit') {
0 commit comments