Updated jenkinsfile

This commit is contained in:
JKuijperM 2026-07-24 12:45:10 +02:00
parent a456e903df
commit 35afb08960

View File

@ -2,7 +2,7 @@ pipeline{
agent any
environment {
DEBUG = 'TRUE'
DEBUG = 'True'
DJANGO_SECRET_KEY = 'test-secret-key-for-ci'
DJANGO_SETTINGS_MODULE = "expenses_manager.settings"
PYTHONUNBUFFERED = "1"
@ -32,7 +32,6 @@ pipeline{
steps {
sh '''
cd expenses_manager
. venv/bin/activate
venv/bin/pytest --cov
'''