SmartPicasso/Jenkinsfile
2020-12-01 20:06:24 +01:00

23 lines
476 B
Groovy

pipeline {
agent any
stages {
stage('Build') {
steps {
sh 'pwd'
sh 'cd rest-app'
sh 'pwd'
sh 'virtualenv venv'
sh '. venv/bin/activate'
sh 'pip3 install -r requirements.txt'
}
}
stage('Test') {
steps {
sh 'cd rest-app'
sh 'python3 manage.py test'
}
}
}
}