nls/.gitlab-ci.yml
2025-03-26 11:49:10 +01:00

20 lines
398 B
YAML

.test:
image: python:3.12
stage: test
before_script:
- pip install -r requirements.txt
- cd src/test
artifacts:
reports:
junit: [ '**/report.xml' ]
test:
extends: .test
parallel:
matrix:
- FILE:
- test_config_token.py
- pytest test_decrypt.py
- test_instance_token.py
script: [ python -m pytest $FILE --junitxml=report.xml ]