URL: https://github.com/freeipa/freeipa/pull/6093 Author: flo-renaud Title: #6093: [Backport][ipa-4-9] ipatests: mark test_installation_TestInstallWithCA_DNS3 as xfail Action: opened
PR body: """ This PR was opened automatically because PR #6090 was pushed to master and backport to ipa-4-9 is required. """ To pull the PR as Git branch: git remote add ghfreeipa https://github.com/freeipa/freeipa git fetch ghfreeipa pull/6093/head:pr6093 git checkout pr6093
From 34dd852606756833fcb3447730bebaba3dc64c7d Mon Sep 17 00:00:00 2001 From: Florence Blanc-Renaud <f...@redhat.com> Date: Thu, 18 Nov 2021 08:35:23 +0100 Subject: [PATCH] ipatests: mark test_installation_TestInstallWithCA_DNS3 as xfail The test failure is a known issue, happening on f33+. Mark as xfail until 8700 is fixed. Related: https://pagure.io/freeipa/issue/8700 Signed-off-by: Florence Blanc-Renaud <f...@redhat.com> --- ipatests/test_integration/test_installation.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ipatests/test_integration/test_installation.py b/ipatests/test_integration/test_installation.py index 3a44f5ed897..e9d3d1683c9 100644 --- a/ipatests/test_integration/test_installation.py +++ b/ipatests/test_integration/test_installation.py @@ -582,6 +582,9 @@ class TestInstallWithCA_DNS3(CALessBase): ticket 7239 """ + @pytest.mark.xfail( + osinfo.id == 'fedora' and osinfo.version_number >= (33,), + reason='freeipa ticket 8700', strict=True) @server_install_setup def test_number_of_zones(self): """There should be two zones: one forward, one reverse"""
_______________________________________________ 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 Do not reply to spam on the list, report it: https://pagure.io/fedora-infrastructure