23 lines
476 B
Groovy
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'
|
|
}
|
|
}
|
|
}
|
|
}
|