From cddb861fd98ac74c4cf41adb3b6dce87d4629689 Mon Sep 17 00:00:00 2001
From: Rafael Guterres Jeffman <rjeffman@redhat.com>
Date: Tue, 15 Feb 2022 17:04:09 -0300
Subject: [PATCH] ansible-lint: Remove warning on 'ignore_errors'.

The test for dnsrecord creates a DNSSEC zone, and was forcing the task
to ignore errors using `ignore_errors: true`. The test environment
should be clean at that point, and without the zone, tests would fail,
so there is no need to keep the attribute set. If the task fails, it
should be fixed.
---
 tests/dnsrecord/env_setup.yml | 1 -
 1 file changed, 1 deletion(-)

diff --git a/tests/dnsrecord/env_setup.yml b/tests/dnsrecord/env_setup.yml
index 0c2cfdff..7c0c0810 100644
--- a/tests/dnsrecord/env_setup.yml
+++ b/tests/dnsrecord/env_setup.yml
@@ -31,4 +31,3 @@
       dnssec: yes
       skip_nameserver_check: yes
       skip_overlap_check: yes
-    ignore_errors: yes
-- 
GitLab