py_test/Jenkinsfile
2025-10-29 13:18:19 -03:00

19 lines
404 B
Groovy

pipeline {
agent any
stages {
stage('Install Python') {
steps {
echo 'Installing Python...'
sh 'sudo apt-get update && sudo apt-get install -y python3 python3-pip'
}
}
stage('Test') {
steps {
echo 'Running tests...'
sh 'python ./test.py'
}
}
}
}