From: Frank Brehm Date: Thu, 29 Dec 2022 08:42:21 +0000 (+0100) Subject: Including test variable X-Git-Tag: v1.0~37 X-Git-Url: https://git.uhu-banane.net/?a=commitdiff_plain;h=ec6a91b9517df642dd9af72178c252760641e2f9;p=pixelpark%2Fpython-packaging.git Including test variable --- 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: