b6c6936189
- Add gating.yaml - Fix tools_not_linked_usr test compatibility with python3 Related: #1980882
28 lines
698 B
YAML
28 lines
698 B
YAML
---
|
|
# Tests suitable to run in classic environment
|
|
- hosts: localhost
|
|
roles:
|
|
- role: standard-test-beakerlib
|
|
tags:
|
|
- classic
|
|
tests:
|
|
- tools_not_linked_usr
|
|
- functions_test
|
|
required_packages:
|
|
- findutils # beakerlib needs find command
|
|
- which # tools_not_linked_usr needs which command
|
|
- lvm2
|
|
|
|
# Tests suitable to run in container and atomic environments
|
|
- hosts: localhost
|
|
roles:
|
|
- role: standard-test-beakerlib
|
|
tags:
|
|
- container
|
|
- atomic
|
|
tests:
|
|
- tools_not_linked_usr
|
|
required_packages:
|
|
- findutils # beakerlib needs find command
|
|
- which # tools_not_linked_usr needs which command
|