molecule-hetznercloud/.drone.yml

60 lines
1.0 KiB
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: devel
steps:
- name: tox -e devel
image: python:3.8-buster
failure: ignore
commands:
- pip install tox==3.14.6
- tox -e devel
---
kind: pipeline
name: integration
steps:
- name: molecule test
image: python:3.8-buster
environment:
MOLECULE_NO_LOG: false
HCLOUD_TOKEN:
from_secret: HCLOUD_TOKEN
commands:
- pip install -e .
- export INSTANCE_UUID=$(openssl rand -hex 5)
- cd integration && molecule test
depends_on:
- linters
- packaging
- py38