ci: fix configuration

This commit is contained in:
Alexander Engelsberger
2021-11-05 12:00:58 +01:00
parent 6370ff61a6
commit 8693ecbfb6

2
Jenkinsfile vendored
View File

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