pipeline { agent { docker { image 'python:3' } } stages { stage('Test') { steps { sh 'pip --version' sh 'pip install black' } } } }