Merge pull request 'Updated jenkinsfile' (#16) from dev into main

Reviewed-on: #16
This commit is contained in:
jkuijperm 2026-07-24 10:46:14 +00:00
commit 8d42cc13f3

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