10 lines
326 B
YAML
10 lines
326 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: .
|
||
|
run: "./basic-test.sh" # this is your test command, its exit code is the outcome of the test
|