82ac4c503a
There is a new feature in the Standard Test Roles which allows to use an FMF filter instead of listing all tests manually. This commit includes all Tier1 and Tier2 tests for respective targets.
37 lines
864 B
YAML
37 lines
864 B
YAML
---
|
|
|
|
# Tests that run in classic context
|
|
- hosts: localhost
|
|
roles:
|
|
- role: standard-test-beakerlib
|
|
tags:
|
|
- classic
|
|
repositories:
|
|
- repo: "https://src.fedoraproject.org/tests/shell.git"
|
|
dest: "shell"
|
|
fmf_filter: "tier: 1, 2 & tags: classic"
|
|
environment:
|
|
PACKAGES: ksh
|
|
SH_BIN: ksh
|
|
required_packages:
|
|
- ksh
|
|
- expect # login requires expect
|
|
- which # smoke requires which
|
|
|
|
# Tests that run in container
|
|
- hosts: localhost
|
|
roles:
|
|
- role: standard-test-beakerlib
|
|
tags:
|
|
- container
|
|
repositories:
|
|
- repo: "https://src.fedoraproject.org/tests/shell.git"
|
|
dest: "shell"
|
|
fmf_filter: "tier: 1, 2 & tags: container, atomic"
|
|
environment:
|
|
PACKAGES: ksh
|
|
SH_BIN: ksh
|
|
required_packages:
|
|
- ksh
|
|
- which # smoke requires which
|