Skip apt_repository test on Ubuntu 18.04 (#81442)

pull/81563/head
Matt Clay 1 year ago committed by GitHub
parent f72b82ed8e
commit f5df6d41a9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -16,6 +16,10 @@
# You should have received a copy of the GNU General Public License
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
- 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')

Loading…
Cancel
Save