mirror of
https://framagit.org/framasoft/framaspace/argos.git
synced 2025-05-05 05:01:49 +02:00
15 lines
No EOL
187 B
YAML
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 |