12 lines
193 B
Groovy
12 lines
193 B
Groovy
pipeline {
|
|
agent any
|
|
|
|
stages {
|
|
stage('Test') {
|
|
steps {
|
|
echo 'Running tests...'
|
|
sh 'python ./test.py'
|
|
}
|
|
}
|
|
}
|
|
}
|