ki-backend/.drone.yml

15 lines
254 B
YAML
Raw Normal View History

2021-06-15 18:33:41 +02:00
---
kind: pipeline
type: docker
name: default
steps:
- name: qa
2021-06-15 18:34:37 +02:00
image: python:3.8-alpine
2021-06-15 18:33:41 +02:00
commands:
- apk add --no-cache gcc g++ musl-dev python3-dev
- pip3 install pipenv
- pipenv install --system
- flake8
2021-06-15 18:34:37 +02:00
- python -m unittest discover ki