molecule-hetznercloud/.drone.yml
Luke Murphy 1cdd217e6b
Some checks failed
continuous-integration/drone/push Build is failing
Go manual with drone pipelines
2020-04-24 14:27:49 +02:00

44 lines
720 B
YAML

---
kind: pipeline
name: linters
steps:
- name: tox -e linters
image: python:3.8-buster
commands:
- pip install tox==3.14.6
- tox -e linters
---
kind: pipeline
name: packaging
steps:
- name: tox -e packaging
image: python:3.8-buster
commands:
- pip install tox==3.14.6
- tox -e packaging
---
kind: pipeline
name: py38
steps:
- name: tox -e py38
image: python:3.8-buster
commands:
- pip install tox==3.14.6
- tox -e py38
---
kind: pipeline
name: integration
steps:
- name: tox -e py38
image: python:3.8-buster
commands:
- pip install -e .
- cd integration-test-role && molecule test
depends_on:
- linters
- packaging
- py38