From bb4f03b5fa8e26d4bb373d6657a3839a5f747fdf Mon Sep 17 00:00:00 2001
From: Mark <mark@openappstack.net>
Date: Fri, 18 Oct 2019 12:08:00 +0200
Subject: [PATCH] Fix path in pipeline

---
 .gitlab-ci.yml | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 5447517..1feeb70 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -2,7 +2,7 @@ stages:
   - build
   - test
 
-application-image:
+backend-image:
   stage: build
   image:
     name: gcr.io/kaniko-project/executor:debug
@@ -28,6 +28,7 @@ backend-unittests:
       alias: postgres
   image: ${CI_REGISTRY_IMAGE}/backend:${CI_COMMIT_REF_NAME}
   script:
+    - cd backend
     - python3 -m unittest discover
   only:
     changes:
-- 
GitLab