blob: e2f3e54c257fb915ecd982237dd62b8e09d572d6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
---
# Tests suitable to run in a classic environment
- hosts: localhost
tags:
- classic
roles:
- role: standard-test-beakerlib
tests:
- smoke-test
required_packages:
- e2fsprogs
# Tests suitable to run in a docker environment
- hosts: localhost
tags:
- container
roles:
- role: standard-test-beakerlib
tests:
- smoke-test
required_packages:
- e2fsprogs
# Tests suitable to run in an Atomic Host environment
- hosts: localhost
tags:
- atomic
roles:
- role: standard-test-beakerlib
tests:
- smoke-test
required_packages:
- e2fsprogs
|