nls/.gitlab-ci.yml
2025-03-20 13:06:12 +01:00

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']