2020-10-14 23:55:18 +00:00
|
|
|
---
|
2021-06-17 11:37:14 +00:00
|
|
|
# - hosts: localhost
|
2020-10-14 23:55:18 +00:00
|
|
|
- hosts: all
|
|
|
|
roles:
|
2021-06-17 11:37:14 +00:00
|
|
|
- role: standard-test-source
|
|
|
|
tags:
|
|
|
|
- always
|
|
|
|
|
2020-10-14 23:55:18 +00:00
|
|
|
- role: standard-test-basic
|
|
|
|
tags:
|
2021-06-17 11:37:14 +00:00
|
|
|
- atomic
|
2020-10-14 23:55:18 +00:00
|
|
|
- classic
|
2021-06-17 11:37:14 +00:00
|
|
|
required_packages:
|
|
|
|
- python3
|
|
|
|
- python3-dbus
|
|
|
|
- libblockdev-plugins-all
|
2022-10-13 10:11:00 +00:00
|
|
|
- python3-yaml
|
|
|
|
- targetcli
|
2020-10-14 23:55:18 +00:00
|
|
|
tests:
|
2021-06-17 11:37:14 +00:00
|
|
|
- unit-tests:
|
2020-10-14 23:55:18 +00:00
|
|
|
dir: .
|
2021-06-17 11:37:14 +00:00
|
|
|
run: ./unit_testing.sh
|
|
|
|
|