Updated jenkinsfile #16

Merged
jkuijperm merged 1 commits from dev into main 2026-07-24 10:46:15 +00:00
Showing only changes of commit 35afb08960 - Show all commits

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
'''