2021-11-03 15:26:32 +00:00
|
|
|
pipeline {
|
|
|
|
agent none
|
|
|
|
stages {
|
|
|
|
stage('Tests') {
|
|
|
|
agent {
|
|
|
|
docker {
|
|
|
|
image 'python:3.9'
|
2021-11-04 09:42:53 +00:00
|
|
|
args '--user 0:0'
|
2021-11-03 15:26:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
steps {
|
2021-11-04 09:53:51 +00:00
|
|
|
sh 'pip install pip --upgrade --progress-bar off'
|
2021-11-04 09:50:44 +00:00
|
|
|
sh 'pip install .[all] --progress-bar off'
|
2021-11-03 15:26:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2021-11-04 08:55:58 +00:00
|
|
|
}
|