Files
lib-paveit-demo/.drone.yml
2023-06-30 08:42:30 +02:00

21 lines
412 B
YAML

kind: pipeline
type: docker
name: backend
environment:
MONGO_USER:
from_secret: MONGO_USER
MONGO_PASSWD:
from_secret: MONGO_PASSWD
MONGO_URI:
from_secret: MONGO_URI
MONGO_USER:
from_secret: MONGO_USER
steps:
- name: test
image: python:3.11-buster
commands:
- pip install --no-cache-dir .
- pip install --no-cache-dir pytest
- pytest -v -log_cli=True --log-cli-level=INFO tests