simple-python-pyinstaller-app/Jenkinsfile
kudlaty 01cf027d24 feature/jenkinsfile
Test stage added
2018-03-21 16:25:32 +01:00

32 lines
No EOL
726 B
Groovy

pipeline{
agent none
stages {
stage('Build') {
agent {
docker {
image 'python:2-alpine'
}
}
steps {
sh 'python -m py_compile sources/add2vals.py sources/calc.py'
}
}
stage('Test') {
agent {
docker {
image 'qnib/pytest'
}
}
steps {
sh 'py.test --verbose --junit-xml test-reports/results.xml sources/test_calc.py'
}
post {
always {
junit 'test-reports/results.xml'
}
}
}
}
}