run tests in jenkins (#39569)

This commit is contained in:
Emmanuel Cazenave 2020-02-05 15:51:14 +01:00
parent 5b4fa9a321
commit 826e1e008a
1 changed files with 15 additions and 0 deletions

15
Jenkinsfile vendored
View File

@ -3,6 +3,21 @@
pipeline {
agent any
stages {
stage('Unit Tests') {
steps {
sh 'tox -rv'
}
post {
always {
script {
utils = new Utils()
utils.publish_coverage('coverage.xml')
utils.publish_coverage_native('index.html')
}
mergeJunitResults()
}
}
}
stage('Packaging') {
steps {
script {