From ec6a91b9517df642dd9af72178c252760641e2f9 Mon Sep 17 00:00:00 2001 From: Frank Brehm Date: Thu, 29 Dec 2022 09:42:21 +0100 Subject: [PATCH] Including test variable --- gitlab/create-all.yaml | 1 + gitlab/python-test-template.yaml | 1 + gitlab/python-tests.yaml | 3 +++ 3 files changed, 5 insertions(+) diff --git a/gitlab/create-all.yaml b/gitlab/create-all.yaml index 16c2d7f..b00eb24 100644 --- a/gitlab/create-all.yaml +++ b/gitlab/create-all.yaml @@ -16,6 +16,7 @@ variables: NOTIFY_ADDRESS: 'frank.brehm@pixelpark.com' SENDER_ADDRESS: 'gitlab-ci@pixelpark.com' SSH_PRIV_KEY_YUM_REPO: 'nada' + UHU: 'in gitlab/create-all.yaml' USED_TIMEZONE: 'Europe/Berlin' VERSION_PREFIX: 'unknown' YUM_REPO_GPG_ID: 'C0E73F70' diff --git a/gitlab/python-test-template.yaml b/gitlab/python-test-template.yaml index fab7b16..538aca1 100644 --- a/gitlab/python-test-template.yaml +++ b/gitlab/python-test-template.yaml @@ -15,6 +15,7 @@ script: - pip install --upgrade --upgrade-strategy eager pytest - pip list --format columns + - echo; echo "Content of variable '\$UHU': '${UHU}'."; echo - pytest --verbose # vim: et tabstop=2 expandtab shiftwidth=2 softtabstop=2 list diff --git a/gitlab/python-tests.yaml b/gitlab/python-tests.yaml index cd3cf39..75b7cd8 100644 --- a/gitlab/python-tests.yaml +++ b/gitlab/python-tests.yaml @@ -4,6 +4,9 @@ include: - local: /gitlab/python-setup-template.yaml - local: /gitlab/python-test-template.yaml +variables: + UHU: 'in gitlab/python-tests.yaml' + # --------------------------- test Python 3.6: extends: -- 2.39.5