Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

locale_gen: enable tests for Arch Linux, make sure they don't even try to run on RHEL and Fedora VMs #9796

Merged
merged 1 commit into from
Feb 23, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions tests/integration/targets/locale_gen/aliases
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,7 @@ azp/posix/3
destructive
needs/root
skip/aix
skip/fedora
skip/freebsd
skip/macos
skip/rhel
2 changes: 1 addition & 1 deletion tests/integration/targets/locale_gen/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

- name: Bail out if not supported
ansible.builtin.meta: end_play
when: ansible_distribution not in ('Ubuntu', 'Debian')
when: ansible_distribution not in ('Ubuntu', 'Debian', 'Archlinux')

- name: Run tests auto-detecting mechanism
ansible.builtin.include_tasks: basic.yml
Expand Down