.gitlab-ci.yml
This commit is contained in:
parent
dec5760fb6
commit
79edc15117
@ -1,13 +1,17 @@
|
|||||||
|
.test:
|
||||||
|
|
||||||
test:
|
|
||||||
image: python:3.12
|
image: python:3.12
|
||||||
stage: test
|
stage: test
|
||||||
before_script:
|
before_script:
|
||||||
- pip install -r requirements.txt
|
- pip install -r requirements.txt
|
||||||
- cd src/test
|
- cd src/test
|
||||||
script:
|
|
||||||
- python -m pytest test.py --junitxml=report.xml
|
|
||||||
artifacts:
|
artifacts:
|
||||||
reports:
|
reports:
|
||||||
junit: ['**/report.xml']
|
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 ]
|
Loading…
Reference in New Issue
Block a user