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

Merge branch 'jenkins' of github.com:jag1g13/pycgtool into jenkins

parents 4d80c133 abbcf30b
No related branches found
No related tags found
No related merge requests found
pipeline {
agent any
stages {
stage('Setup Environment') {
steps {
sh '''python3 -m venv env
. env/bin/activate
pip install -e .[full]'''
}
}
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