py_test/Jenkinsfile

20 lines
393 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...'
2025-10-29 13:19:40 -03:00
sh 'apt-get update && apt-get install -y python3 python3-pip'
2025-10-29 13:18:19 -03:00
}
}
2025-10-29 13:11:30 -03:00
stage('Test') {
steps {
echo 'Running tests...'
2025-10-29 13:21:58 -03:00
sh 'python3 test.py'
2025-10-29 13:11:30 -03:00
}
}
}
}