15 lines
314 B
YAML
15 lines
314 B
YAML
|
----
|
||
|
kind: pipeline
|
||
|
name: default
|
||
|
steps:
|
||
|
- name: integration test
|
||
|
image: python:3.9-buster
|
||
|
environment:
|
||
|
REMOTE_USER: molecule
|
||
|
HCLOUD_TOKEN:
|
||
|
from_secret: HCLOUD_TOKEN
|
||
|
commands:
|
||
|
- pip install -r requirements.txt
|
||
|
- export INSTANCE_UUID=$(pwgen 8 1)
|
||
|
- molecule test
|