little-boxes/.drone.yml

26 wiersze
565 B
YAML
Czysty Zwykły widok Historia

2019-04-13 09:41:06 +00:00
---
kind: pipeline
name: default
steps:
- name : lint
2019-04-11 19:47:52 +00:00
image: python:3
commands:
- pip install -r requirements.txt
2019-04-13 09:41:06 +00:00
- pip install black flake8 mypy
2019-04-11 19:47:52 +00:00
- black --check .
2019-04-13 09:41:06 +00:00
- flake8 little_boxes
- mypy --ignore-missing-imports little_boxes
- name: test
image: python:3
commands:
- pip install -r requirements.txt
- pip install -r dev-requirements.txt
2019-04-11 19:47:52 +00:00
- python -m pytest -vv --cov=little_boxes
- codecov
2019-04-13 09:41:06 +00:00
---
kind: signature
hmac: 1a911726b099fc76fc3ea1181f5c7b0c0e4d8d4b1b314204def5da7f21fb299b
...