14 lines
236 B
YAML
14 lines
236 B
YAML
|
|
|
|
test:
|
|
image: python:3.12
|
|
stage: test
|
|
before_script:
|
|
- pip install -r requirements.txt
|
|
- cd src/test
|
|
script:
|
|
- python -m pytest test.py --junitxml=report.xml
|
|
artifacts:
|
|
reports:
|
|
junit: ['**/report.xml']
|