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