fixed jenki arguments
ci-tests/python-test/pipeline/head There was a failure building this commit

This commit is contained in:
2021-06-22 22:25:06 +02:00
parent 021ddcd38a
commit 329aea2edd
Vendored
+2 -2
View File
@@ -17,7 +17,7 @@ pipeline {
stage('build') {
agent {
docker { image "python:$PY_VERSION"
args '-e DJANGO_SETTINGS_MODULE: "locallibrary.settings"'}
args '-e DJANGO_SETTINGS_MODULE="locallibrary.settings"'}
}
steps {
sh 'python --version'
@@ -26,7 +26,7 @@ pipeline {
stage('test') {
agent {
docker { image "python:$PY_VERSION"
args '-e DJANGO_SETTINGS_MODULE: "locallibrary.settings"'}
args '-e DJANGO_SETTINGS_MODULE="locallibrary.settings"'}
}
steps {
sh 'pip3 install -r requirements.txt'