Files
blog24/Jenkinsfile
2024-07-24 08:38:25 +00:00

22 lines
293 B
Groovy

pipeline {
agent {
docker {
image 'python:slim'
}
}
stages {
stage('install_dep') {
steps {
sh 'pip install -r requirements/dev.txt && python manage.py migrate'
}
}
stage('tests') {
steps {
sh 'pytest -v'
}
}
}
}