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