From f5df6d41a929d6a8873765620a2019271ff58112 Mon Sep 17 00:00:00 2001 From: Matt Clay Date: Thu, 3 Aug 2023 19:52:14 -0700 Subject: [PATCH] Skip apt_repository test on Ubuntu 18.04 (#81442) --- test/integration/targets/apt_repository/tasks/main.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/integration/targets/apt_repository/tasks/main.yml b/test/integration/targets/apt_repository/tasks/main.yml index 4101011260a..e3655ad0d69 100644 --- a/test/integration/targets/apt_repository/tasks/main.yml +++ b/test/integration/targets/apt_repository/tasks/main.yml @@ -16,6 +16,10 @@ # You should have received a copy of the GNU General Public License # along with Ansible. If not, see . +- name: Skip tests on Ubuntu 18.04 due to intermittent failures from attempted use of IPv6 addresses + meta: end_play + when: ansible_distribution == 'Ubuntu' and ansible_distribution_version == '18.04' + - include: 'apt.yml' when: ansible_distribution in ('Ubuntu')