tenkan/.drone.yml
Quentin Ferrand 6bba5b962c
Some checks failed
continuous-integration/drone/push Build is failing
-
2022-04-19 11:24:41 +02:00

14 lines
352 B
YAML

---
kind: pipeline
type: kubernetes
name: python
steps:
- name: test
image: python:latest
commands:
- pip install -q --upgrade pip black flake8 mypy pylint pytest
- flake8 --ignore=E501,W503,E265
- mypy --ignore-missing-imports ./tenkan/
- pylint --disable=E1101,E0401,C0301,W1514 --ignore=tenkan/__init__.py ./tenkan/
- pytest ./tests/