Compare commits

..

No commits in common. "8d42cc13f3fbf2782ab285cecee2f4773494db59" and "790fa214e3c6f95959a1057ed76096e445f7e331" have entirely different histories.

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,6 +32,7 @@ pipeline{
steps {
sh '''
cd expenses_manager
. venv/bin/activate
venv/bin/pytest --cov
'''