ci: fix configuration

This commit is contained in:
Alexander Engelsberger 2021-11-05 12:00:58 +01:00
parent 6370ff61a6
commit 8693ecbfb6
No known key found for this signature in database
GPG Key ID: BE3F5909FF0D83E3

2
Jenkinsfile vendored
View File

@ -2,7 +2,6 @@ pipeline {
agent none
stages {
stage('Unit Tests') {
stage('3.10') {
agent {
dockerfile {
filename 'python310.Dockerfile'
@ -15,7 +14,6 @@ pipeline {
sh 'pip install .[all] --progress-bar off'
sh 'pytest -v --junitxml=reports/result.xml'
}
}
post {
always {
junit 'reports/**/*.xml'