From 0e9df4f8596ae6c5db637983df8601eaef96a30a Mon Sep 17 00:00:00 2001 From: Marcin-Ramotowski Date: Sun, 4 May 2025 10:14:36 +0000 Subject: [PATCH] Corrected command to run tests in Goss --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 177abb1..4716090 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -42,7 +42,7 @@ pipeline { ''' withEnv(["GOSS_OPTS=-f junit", 'GOSS_PATH=./goss', "SQLALCHEMY_DATABASE_URI=sqlite:///:memory:"]) { - sh label: 'run image tests', script: './dgoss run ${DOCKER_IMAGE} > goss_junit.xml' + sh label: 'run image tests', script: './dgoss run -e SQLALCHEMY_DATABASE_URI=sqlite:///:memory: ${DOCKER_IMAGE} > goss_junit.xml' } } }