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

Install dependencies in Jenkinsfile

parent d345550e
No related branches found
No related tags found
No related merge requests found
pipeline { pipeline {
agent any agent any
stages { stages {
stage('Setup Environment') {
steps {
sh '''python3 -m venv env
source env/bin/activate
pip install -e .[full]'''
}
}
stage('Test') { stage('Test') {
steps { steps {
sh 'py.test --junitxml results.xml test/' sh 'py.test --junitxml results.xml test/'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment