From 4536535e7020caf282fdd7e5cecfb1e782d58532 Mon Sep 17 00:00:00 2001 From: knj Date: Fri, 14 Apr 2023 13:47:02 +0200 Subject: [PATCH] add anchor for info printout on python version --- .gitlab-ci.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 2dfef304..a4cfa7c1 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -11,6 +11,14 @@ stages: - analyze +# print some info on the runner setup +.print-common-info: &print-common-info + - echo "--------------------------------------------\n" + - python3 --version + - pip3 freeze | grep "numpy\|scipy\|YAML\|pytest\|black\|isort\|flake8" + - echo "--------------------------------------------\n\n" + + # script anchor for updating the codec repo .get-codec-binaries: &get-codec-binaries - dir=$(pwd) @@ -33,6 +41,7 @@ test_audiotools_convert: tags: - linux script: + - *print-common-info - python3 -m pytest -n auto tests/test_audiotools_convert.py # run some test configs for item creation @@ -41,6 +50,7 @@ test_processing: tags: - linux script: + - *print-common-info - *get-codec-binaries - python3 -m pytest -n auto tests/test_processing.py -- GitLab