change in manifest

This commit is contained in:
shikhar.s 2019-07-05 16:25:37 +05:30
parent 31e40e7a9a
commit b372c64a51

60
Jenkinsfile vendored
View File

@ -43,36 +43,36 @@ pipeline {
} }
} }
stage ('Check_style') { // stage ('Check_style') {
steps { // steps {
// sh """ // sh """
// #. venv/bin/activate // #. venv/bin/activate
// [ -d report ] || mkdir report // [ -d report ] || mkdir report
// export PATH=${VIRTUAL_ENV}/bin:${PATH} // export PATH=${VIRTUAL_ENV}/bin:${PATH}
// make check || true // make check || true
// """ // """
sh """ // sh """
export PATH=${VIRTUAL_ENV}/bin:${PATH} // export PATH=${VIRTUAL_ENV}/bin:${PATH}
make flake8 | tee report/flake8.log || true // make flake8 | tee report/flake8.log || true
""" // """
sh """ // sh """
export PATH=${VIRTUAL_ENV}/bin:${PATH} // export PATH=${VIRTUAL_ENV}/bin:${PATH}
make pylint | tee report/pylint.log || true // make pylint | tee report/pylint.log || true
""" // """
step([$class: 'WarningsPublisher', // step([$class: 'WarningsPublisher',
parserConfigurations: [[ // parserConfigurations: [[
parserName: 'Pep8', // parserName: 'Pep8',
pattern: 'report/flake8.log' // pattern: 'report/flake8.log'
], // ],
[ // [
parserName: 'pylint', // parserName: 'pylint',
pattern: 'report/pylint.log' // pattern: 'report/pylint.log'
]], // ]],
unstableTotalAll: '0', // unstableTotalAll: '0',
usePreviousBuildAsReference: true // usePreviousBuildAsReference: true
]) // ])
} // }
} // }
stage ('Unit Tests') { stage ('Unit Tests') {
steps { steps {