URL: https://github.com/freeipa/freeipa/pull/5041 Author: rcritten Title: #5041: [Backport][ipa-4-8] ipatests: remove xfail from test_dnssec Action: opened
PR body: """ This PR was opened automatically because PR #5031 was pushed to master and backport to ipa-4-8 is required. """ To pull the PR as Git branch: git remote add ghfreeipa https://github.com/freeipa/freeipa git fetch ghfreeipa pull/5041/head:pr5041 git checkout pr5041
From 6a51f741c167c39245f2029644f105a4f1e3ec1f Mon Sep 17 00:00:00 2001 From: Florence Blanc-Renaud <f...@redhat.com> Date: Thu, 13 Aug 2020 09:33:57 +0200 Subject: [PATCH] ipatests: remove xfail from test_dnssec The nightly test test_dnssec.py::TestInstallDNSSECFirst::test_chain_of_trust used to fail because of https://github.com/rthalley/dnspython/issues/343, but the issue has been fixed upstream and does not happen any more since PRCI is using python3-dns-1.16.0-7. Remove the xfail. --- ipatests/test_integration/test_dnssec.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/ipatests/test_integration/test_dnssec.py b/ipatests/test_integration/test_dnssec.py index b7b46cbe0e..ccaa7f9b54 100644 --- a/ipatests/test_integration/test_dnssec.py +++ b/ipatests/test_integration/test_dnssec.py @@ -13,8 +13,6 @@ import dns.resolver import dns.name -import pytest - from ipatests.test_integration.base import IntegrationTest from ipatests.pytest_ipa.integration import tasks from ipatests.pytest_ipa.integration.firewall import Firewall @@ -320,7 +318,6 @@ def test_sign_root_zone(self): self.replicas[0].ip, root_zone, timeout=300 ), "Zone %s is not signed (replica)" % root_zone - @pytest.mark.xfail(reason='dnspython issue 343', strict=False) def test_chain_of_trust(self): """ Validate signed DNS records, using our own signed root zone
_______________________________________________ FreeIPA-devel mailing list -- freeipa-devel@lists.fedorahosted.org To unsubscribe send an email to freeipa-devel-le...@lists.fedorahosted.org Fedora Code of Conduct: https://docs.fedoraproject.org/en-US/project/code-of-conduct/ List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines List Archives: https://lists.fedorahosted.org/archives/list/freeipa-devel@lists.fedorahosted.org