From 32b6ca6240804b81150f4d3ba6f19e97d909a267 Mon Sep 17 00:00:00 2001
From: Dorian Turba <froggit.commit.z3jqj@simplelogin.com>
Date: Mon, 17 Jul 2023 13:26:04 +0200
Subject: [PATCH] same stage for template_testing

---
 .gitlab-ci.yml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index cff5349..de70d1f 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -1,18 +1,18 @@
 stages:
-    - code_quality
-    - test
+    - template_testing
 
 include:
     - local: 'templates/python/testing/pytest/pytest.yml'
     - local: 'templates/python/code_quality/flake8/flake8.yml'
 
 pytest:
+    stage: template_testing
     variables:
         PROJECT_PATH: "tests/pytest_project"
         PYTHON_SETUP: "pip install ${PROJECT_PATH} pytest"
 
 flake8:
+    stage: template_testing
     variables:
-        IMAGE_TAG: "latest"
         PROJECT_PATH: "tests/flake8_project"
         PYTHON_SETUP: "pip install ${PROJECT_PATH} flake8"
-- 
GitLab