Tier0 tests were part of RHEL8 which were
not added in RHEL9 in following
commit 96aed6bf63
Now added with this change which will execute
the tier0 tests in osci
Related: rhbz#1947473
Signed-off-by: Kaleemullah Siddiqui <ksiddiqu@redhat.com>
19 lines
578 B
YAML
19 lines
578 B
YAML
---
|
|
- hosts: localhost
|
|
tags: [ always ]
|
|
tasks:
|
|
- set_fact:
|
|
our_required_packages:
|
|
- wget # upstream-testsuite-execution-and-rebuild-test needs wget command
|
|
- yum-utils # upstream-testsuite-execution-and-rebuild-test needs yum-builddep command
|
|
- rpm-build # upstream-testsuite-execution-and-rebuild-test needs rpmbuild command
|
|
|
|
- hosts: localhost
|
|
tags:
|
|
- classic
|
|
roles:
|
|
- role: standard-test-beakerlib
|
|
tests:
|
|
- upstream-testsuite-execution-and-rebuild-test
|
|
required_packages: "{{ our_required_packages }}"
|