This commit is contained in:
parent
b3955c89f3
commit
04ca2779ae
34
.drone.yml
34
.drone.yml
@ -1,3 +1,33 @@
|
|||||||
|
---
|
||||||
|
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
|
kind: pipeline
|
||||||
name: integration
|
name: integration
|
||||||
@ -12,3 +42,7 @@ steps:
|
|||||||
- pip install -e .
|
- pip install -e .
|
||||||
- export INSTANCE_UUID=$(openssl rand -hex 5)
|
- export INSTANCE_UUID=$(openssl rand -hex 5)
|
||||||
- cd integration && molecule test
|
- cd integration && molecule test
|
||||||
|
depends_on:
|
||||||
|
- linters
|
||||||
|
- packaging
|
||||||
|
- py38
|
||||||
|
Loading…
Reference in New Issue
Block a user