replace some comments by echo of command, so blocks are not empty

This commit is contained in:
Frédéric Péters 2019-07-02 12:14:41 +02:00
parent 27da61f3c3
commit c3b768c021
1 changed files with 2 additions and 2 deletions

4
Jenkinsfile vendored
View File

@ -6,7 +6,7 @@ pipeline {
stages {
stage('Unit Tests') {
steps {
// sh 'tox -rv'
echo "sh 'tox -rv'"
}
post {
always {
@ -16,7 +16,7 @@ pipeline {
// utils.publish_coverage_native('index.html')
// utils.publish_pylint('pylint.out')
}
// junit '*_results.xml'
echo "junit '*_results.xml'"
}
}
}