17 lines
511 B
YAML
17 lines
511 B
YAML
|
- hosts: localhost
|
||
|
roles:
|
||
|
- role: standard-test-basic # this is a standard test role, it takes care of the test environment, logging, archiving results..
|
||
|
tags:
|
||
|
- classic
|
||
|
tests:
|
||
|
- simple:
|
||
|
dir: ./testing/
|
||
|
run: python3 stratisd_cert.py -v --disk /dev/vdb --disk /dev/vdc --disk /dev/vdd
|
||
|
required_packages:
|
||
|
- util-linux
|
||
|
- python3-psutil
|
||
|
repositories:
|
||
|
- repo: "https://github.com/stratis-storage/testing.git"
|
||
|
dest: "testing"
|
||
|
version: "v2.4.0"
|