17 lines
385 B
YAML
17 lines
385 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_decrypt:
|
|
extends: .test
|
|
script: [ python -m pytest test_decrypt.py --junitxml=report.xml ]
|
|
|
|
test_config_token:
|
|
extends: .test
|
|
script: [ python -m pytest test_config_token.py --junitxml=report.xml ] |