tests: Removed call for install method from parent class

The IntegrationTest.install method installs the full topology while in ca-less
tests we need to check server installation, thus the nodes should not have
server or replica installed

Reviewed-By: David Kupka <dkupka@redhat.com>
This commit is contained in:
Oleg Fayans 2016-09-09 12:17:09 +02:00 committed by David Kupka
parent 48ca465a12
commit 725d8d0cac

View File

@ -103,7 +103,6 @@ def replica_install_teardown(func):
class CALessBase(IntegrationTest): class CALessBase(IntegrationTest):
@classmethod @classmethod
def install(cls, mh): def install(cls, mh):
super(CALessBase, cls).install(mh)
cls.cert_dir = tempfile.mkdtemp(prefix="ipatest-") cls.cert_dir = tempfile.mkdtemp(prefix="ipatest-")
cls.pem_filename = os.path.join(cls.cert_dir, 'root.pem') cls.pem_filename = os.path.join(cls.cert_dir, 'root.pem')
scriptfile = os.path.join(os.path.dirname(__file__), scriptfile = os.path.join(os.path.dirname(__file__),