skip build/test steps to allow faster debugging of the hotfix code

This commit is contained in:
Frédéric Péters 2019-07-02 12:08:37 +02:00
parent b06a5b3d2a
commit a86331641f
1 changed files with 5 additions and 5 deletions

10
Jenkinsfile vendored
View File

@ -6,17 +6,17 @@ pipeline {
stages {
stage('Unit Tests') {
steps {
sh 'tox -rv'
#sh 'tox -rv'
}
post {
always {
script {
utils = new Utils()
utils.publish_coverage('coverage.xml')
utils.publish_coverage_native('index.html')
utils.publish_pylint('pylint.out')
#utils.publish_coverage('coverage.xml')
#utils.publish_coverage_native('index.html')
#utils.publish_pylint('pylint.out')
}
junit '*_results.xml'
#junit '*_results.xml'
}
}
}