Commit e007ca5c authored by Jan Kiene's avatar Jan Kiene
Browse files

Merge branch 'add-common-info-ci' into 'main'

add anchor for info printout on python version

See merge request !6
parents 18c5ab8c 4536535e
Loading
Loading
Loading
Loading
Loading
+10 −0
Original line number Diff line number Diff line
@@ -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