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

Added Jenkins pipeline

parent 81e23e7b
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