URL: https://github.com/freeipa/freeipa/pull/926
Author: Rezney
 Title: #926: test_caless: remove xfail in wildcard certificate tests
Action: opened

PR body:
"""
As we are now generating proper wildcard certificates, remove xfail
in wildcard certificate tests.

https://pagure.io/freeipa/issue/5603
"""

To pull the PR as Git branch:
git remote add ghfreeipa https://github.com/freeipa/freeipa
git fetch ghfreeipa pull/926/head:pr926
git checkout pr926
From ce673db899fa2874c3aa023884f72c537df09b67 Mon Sep 17 00:00:00 2001
From: Michal Reznik <mrez...@redhat.com>
Date: Wed, 19 Jul 2017 14:26:31 +0200
Subject: [PATCH] test_caless: remove xfail in wildcard certificate tests
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

As we are now generating proper wildcard certificates, remove xfail
in wildcard certificate tests.

https://pagure.io/freeipa/issue/5603
---
 ipatests/test_integration/test_caless.py | 6 ------
 1 file changed, 6 deletions(-)

diff --git a/ipatests/test_integration/test_caless.py b/ipatests/test_integration/test_caless.py
index 8ce20cb9a7..df279b9b16 100644
--- a/ipatests/test_integration/test_caless.py
+++ b/ipatests/test_integration/test_caless.py
@@ -672,7 +672,6 @@ def test_valid_certs(self):
         assert result.returncode == 0
         self.verify_installation()
 
-    @pytest.mark.xfail(reason='freeipa ticket 5603')
     @server_install_teardown
     def test_wildcard_http(self):
         "IPA server install with wildcard HTTP certificate"
@@ -687,7 +686,6 @@ def test_wildcard_http(self):
         assert result.returncode == 0
         self.verify_installation()
 
-    @pytest.mark.xfail(reason='freeipa ticket 5603')
     @server_install_teardown
     def test_wildcard_ds(self):
         "IPA server install with wildcard DS certificate"
@@ -1034,7 +1032,6 @@ def test_valid_certs(self):
         if self.domain_level > DOMAIN_LEVEL_0:
             self.verify_installation()
 
-    @pytest.mark.xfail(reason='freeipa ticket 5603')
     @replica_install_teardown
     def test_wildcard_http(self):
         "IPA replica install with wildcard HTTP certificate"
@@ -1048,7 +1045,6 @@ def test_wildcard_http(self):
         if self.domain_level > DOMAIN_LEVEL_0:
             self.verify_installation()
 
-    @pytest.mark.xfail(reason='freeipa ticket 5603')
     @replica_install_teardown
     def test_wildcard_ds(self):
         "IPA replica install with wildcard DS certificate"
@@ -1429,14 +1425,12 @@ def test_valid_ds(self):
         result = self.certinstall('d', 'ca1/server')
         assert result.returncode == 0
 
-    @pytest.mark.xfail(reason='freeipa ticket 5603')
     def test_wildcard_http(self):
         "Install new wildcard HTTP certificate"
 
         result = self.certinstall('w', 'ca1/wildcard')
         assert result.returncode == 0
 
-    @pytest.mark.xfail(reason='freeipa ticket 5603')
     def test_wildcard_ds(self):
         "Install new wildcard DS certificate"
 
_______________________________________________
FreeIPA-devel mailing list -- freeipa-devel@lists.fedorahosted.org
To unsubscribe send an email to freeipa-devel-le...@lists.fedorahosted.org

Reply via email to