31 lines
703 B
YAML
31 lines
703 B
YAML
---
|
|
# Tests that run in classic context
|
|
- hosts: localhost
|
|
roles:
|
|
- role: standard-test-beakerlib
|
|
tags:
|
|
- classic
|
|
tests:
|
|
- changing-password-with-stdin-opiton-limits
|
|
- passwd-exit-status-1
|
|
- smoke-test
|
|
required_packages:
|
|
- expect
|
|
- findutils # beakerlib needs find command
|
|
- openssh # smoke-test needs openssh
|
|
- passwd
|
|
|
|
# Tests that run in container context
|
|
- hosts: localhost
|
|
roles:
|
|
- role: standard-test-beakerlib
|
|
tags:
|
|
- container
|
|
tests:
|
|
- changing-password-with-stdin-opiton-limits
|
|
- passwd-exit-status-1
|
|
required_packages:
|
|
- expect
|
|
- findutils # beakerlib needs find command
|
|
- passwd
|