Skip to content
Snippets Groups Projects
Commit 41ce5e08 authored by James Graham's avatar James Graham
Browse files

Setup initial Jenkins pipeline

parent 26f83ed0
No related branches found
No related tags found
No related merge requests found
pipeline {
agent any
stages {
stage('Test') {
steps {
sh 'py.test --junitxml results.xml test/'
}
}
stage('xUnit') {
steps {
junit 'results.xml'
}
}
}
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment