py_test/Jenkinsfile

13 lines
193 B
Text
Raw Normal View History

2025-10-29 13:11:30 -03:00
pipeline {
agent any
stages {
stage('Test') {
steps {
echo 'Running tests...'
sh 'python ./test.py'
}
}
}
}