bd2ed33a5b
Resolves: rhbz#2011877 Enabled all tests: - Copied script from RHEL 8.6.0 branch. - Added nightly RHEL 9.0 repositories. - Don't install EPEL for RHEL 9.0: Koji and Ansible aren't required for any of the enabled tests. Unmount /tmp before running tests: /tmp is too small to contain the results of image building tests. Unmounting the partition makes it part of the underlying root partition, which is much larger.
17 lines
346 B
YAML
17 lines
346 B
YAML
- hosts: localhost
|
|
pre_tasks:
|
|
- name: unmount tmp to use disk for tests
|
|
shell: umount /tmp
|
|
tags:
|
|
- classic
|
|
roles:
|
|
- role: standard-test-basic
|
|
tags:
|
|
- classic
|
|
required_packages:
|
|
- osbuild-composer-tests
|
|
tests:
|
|
- integration:
|
|
dir: scripts
|
|
run: ./run_tests.sh {{ tenv_workdir }}
|