diff --git a/tests/tests_packages_full.yml b/tests/tests_packages_full.yml index 1db6b60..767521c 100644 --- a/tests/tests_packages_full.yml +++ b/tests/tests_packages_full.yml @@ -46,7 +46,9 @@ - name: Ensure excluded packages are not installed fail: msg: The package {{ item }} should not be installed - when: item in ansible_facts.packages + when: + - not __cockpit_is_ostree # skip this test on ostree + - item in ansible_facts.packages loop: "{{ __cockpit_packages_exclude | d([]) }}" - name: >-