argos/.gitlab-ci.yml

15 lines
No EOL
187 B
YAML

image: python:3.11
stages:
- test
before_script:
- python -V
- python -m venv venv
- ./venv/bin/pip install -e ".[dev]"
pytest:
stage: test
script:
- ./venv/bin/pytest