kind: pipeline type: docker name: python-ci steps: - name: install-dependencies image: python:3.10-slim commands: - pip install -r requirements.txt - name: run-tests image: python:3.10-slim commands: - pip install -r requirements.txt # Assure l'installation des dépendances ici aussi - pytest tests/