py_test/Jenkinsfile

20 lines
404 B
Text
Raw Normal View History

2025-10-29 13:11:30 -03:00
pipeline {
agent any
stages {
2025-10-29 13:18:19 -03:00
stage('Install Python') {
steps {
echo 'Installing Python...'
sh 'sudo apt-get update && sudo apt-get install -y python3 python3-pip'
}
}
2025-10-29 13:11:30 -03:00
stage('Test') {
steps {
echo 'Running tests...'
sh 'python ./test.py'
}
}
}
}