pipeline { agent none stages { stage('Tests') { agent { docker { image 'python:3.9' } } steps { sh 'whoami' sh 'pip install .[all] --user --progress-bar off' } } } }