summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMilan KubĂ­k <mkubik@redhat.com>2015-08-17 09:06:24 +0200
committerMartin Basti <mbasti@redhat.com>2015-08-20 16:55:26 +0200
commit57b07070f0b16f7e0099282d6a78f22c6af00793 (patch)
treeea4aac002a571762a54cd554fe1e786f2610aaa2
parent89c9feaf93299c96bb227b3705246193a1de1d82 (diff)
downloadfreeipa-57b07070f0b16f7e0099282d6a78f22c6af00793.tar.gz
freeipa-57b07070f0b16f7e0099282d6a78f22c6af00793.tar.xz
freeipa-57b07070f0b16f7e0099282d6a78f22c6af00793.zip
ipatests: Take otptoken import test out of execution
The issue reported in ticket [1] hasn't been solved yet. This patch prevents the test cases for OTP import being run. The change is intended as a *temporary* workaround until proper fix for the issue is introduced. [1] https://fedorahosted.org/freeipa/ticket/5192 Reviewed-By: Martin Basti <mbasti@redhat.com>
-rw-r--r--ipatests/test_ipaserver/test_otptoken_import.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/ipatests/test_ipaserver/test_otptoken_import.py b/ipatests/test_ipaserver/test_otptoken_import.py
index 84df0e2a6..1b796ce87 100644
--- a/ipatests/test_ipaserver/test_otptoken_import.py
+++ b/ipatests/test_ipaserver/test_otptoken_import.py
@@ -20,6 +20,7 @@
import os
import sys
import nose
+import pytest
from nss import nss
from ipalib.x509 import initialize_nss_database
@@ -27,6 +28,7 @@ from ipaserver.install.ipa_otptoken_import import PSKCDocument, ValidationError
basename = os.path.join(os.path.dirname(__file__), "data")
+@pytest.mark.skipif(True, reason="Causes NSS errors. Ticket 5192")
class test_otptoken_import(object):
def teardown(self):