summaryrefslogtreecommitdiffstats
path: root/ipatests/pytest_plugins
diff options
context:
space:
mode:
authorChristian Heimes <cheimes@redhat.com>2017-02-17 08:39:54 +0100
committerMartin Babinsky <mbabinsk@redhat.com>2017-03-17 15:02:13 +0100
commitfd1b4f6ec9a349196d5df510008c4745f0b1fb84 (patch)
tree838fcedda9c5424296d018a10d4c50da7fb2f07a /ipatests/pytest_plugins
parent4ee7e4ee6d6500d8b8935c9033388adc4cdbe672 (diff)
downloadfreeipa-fd1b4f6ec9a349196d5df510008c4745f0b1fb84.tar.gz
freeipa-fd1b4f6ec9a349196d5df510008c4745f0b1fb84.tar.xz
freeipa-fd1b4f6ec9a349196d5df510008c4745f0b1fb84.zip
Add options to run only ipaclient unittests
A new option for ipa-run-tests makes the test runner ignore subdirectories or skips tests that depend on the ipaserver package or on a running framework for RPC integration tests. The new option enables testing of client-only builds. $ ipatests/ipa-run-tests --ipaclient-unittests ... platform linux2 -- Python 2.7.13, pytest-2.9.2, py-1.4.32, pluggy-0.3.1 rootdir: /home/heimes/redhat, inifile: tox.ini plugins: sourceorder-0.5, cov-2.3.0, betamax-0.7.1, multihost-1.1 collected 451 items test_util.py ........ util.py .. test_ipaclient/test_csrgen.py ..............ssss... test_ipalib/test_aci.py ................... test_ipalib/test_backend.py ........ test_ipalib/test_base.py ............... test_ipalib/test_capabilities.py . test_ipalib/test_cli.py ... test_ipalib/test_config.py ............... test_ipalib/test_crud.py ............... test_ipalib/test_errors.py ....... test_ipalib/test_frontend.py ........................................ test_ipalib/test_messages.py .... test_ipalib/test_output.py ... test_ipalib/test_parameters.py ............................................................. test_ipalib/test_plugable.py ........ test_ipalib/test_rpc.py ......ssssssss test_ipalib/test_text.py ............................. test_ipalib/test_x509.py ... test_ipapython/test_cookie.py ............ test_ipapython/test_dn.py ........................... test_ipapython/test_ipautil.py .................................................................. test_ipapython/test_ipavalidate.py .......... test_ipapython/test_kerberos.py .............. test_ipapython/test_keyring.py .......... test_ipapython/test_ssh.py ............................... test_pkcs10/test_pkcs10.py ..... https://fedorahosted.org/freeipa/ticket/6517 Signed-off-by: Christian Heimes <cheimes@redhat.com> Reviewed-By: Martin Babinsky <mbabinsk@redhat.com>
Diffstat (limited to 'ipatests/pytest_plugins')
-rw-r--r--ipatests/pytest_plugins/integration.py8
1 files changed, 5 insertions, 3 deletions
diff --git a/ipatests/pytest_plugins/integration.py b/ipatests/pytest_plugins/integration.py
index de37bf3c8..ae94dbcb1 100644
--- a/ipatests/pytest_plugins/integration.py
+++ b/ipatests/pytest_plugins/integration.py
@@ -30,9 +30,6 @@ from pytest_multihost import make_multihost_fixture
from ipapython import ipautil
from ipapython.ipa_log_manager import log_mgr
-from ipatests.test_integration import tasks
-from ipatests.test_integration.config import Config
-from ipatests.test_integration.env_config import get_global_config
log = log_mgr.get_logger(__name__)
@@ -155,6 +152,11 @@ def integration_logs(class_integration_logs, request):
def mh(request, class_integration_logs):
"""IPA's multihost fixture object
"""
+ # TODO: cleanup modules
+ from ipatests.test_integration import tasks
+ from ipatests.test_integration.config import Config
+ from ipatests.test_integration.env_config import get_global_config
+
cls = request.cls
domain_description = {