20 lines
408 B
YAML
20 lines
408 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:
|
|
- TEST_FILE:
|
|
- test_config_token.py
|
|
- pytest test_decrypt.py
|
|
- test_instance_token.py
|
|
script: [ python -m pytest $TEST_FILE --junitxml=report.xml ]
|