Files
kontor/django/Jenkinsfile
T
2025-01-09 19:28:50 +01:00

14 lines
358 B
Groovy

node {
stage "Checkout"
checkout scm
stage "make migrations"
sh "python kontor/manage.py makemigrations"
stage "execute tests"
<<<<<<< HEAD
sh "python kontor/manage.py test comics library medien tradingcards homeoffice"
=======
sh "python kontor/manage.py test commics library medien tradingcards homeoffice"
>>>>>>> add tests
}