platypush/.drone.yml

17 lines
358 B
YAML
Raw Normal View History

2023-07-24 12:12:13 +02:00
---
2023-07-24 11:05:38 +02:00
kind: pipeline
type: docker
name: default
steps:
- name: run-tests
image: python:3.11-alpine
commands:
- apk add --update --no-cache redis
- apk add --update --no-cache --virtual build-base g++ rust
- pip install -U pip
- pip install .
- pip install -r requirements-tests.txt
- apk del build-base g++ rust
- pytest tests