15 lines
329 B
YAML
15 lines
329 B
YAML
---
|
|
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 16)
|
|
- cd integration && molecule test
|