pipeline {
agent {
docker { image 'python:3' }
}
stages {
stage('Test') {
steps {
sh 'pip3 --version'
sh 'pip3 install -r requirements.txt'