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>
This commit is contained in:
Milan Kubík 2015-08-17 09:06:24 +02:00 committed by Martin Basti
parent 7c48621bb8
commit d8b9125895

View File

@ -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):