pipeline {
// agent { docker { image 'python:3.10.10' } }
stages {
stage('build') {
steps {
sh 'pip install -r requirements.txt'
}
stage('test') {
sh 'flake baseline.py'
stage('run') {
sh 'run.sh'