From c577420e40a353f3038263bf8ef763f7c01f6f22 Mon Sep 17 00:00:00 2001 From: Petr Viktorin Date: Fri, 24 May 2013 19:55:21 +0200 Subject: Add a framework for integration test configuration Integration tests are configured via environment variables. Add a framework for parsing these variables and storing them in easy-to-use objects. Add an `ipa-test-config` executable that loads the configuration and prints out variables needed in shell scripts. Part of the work for https://fedorahosted.org/freeipa/ticket/3621 --- ipatests/setup.py.in | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'ipatests/setup.py.in') diff --git a/ipatests/setup.py.in b/ipatests/setup.py.in index 4e0b1aa00..2a5bffce9 100644 --- a/ipatests/setup.py.in +++ b/ipatests/setup.py.in @@ -68,13 +68,14 @@ def setup_package(): packages = ["ipatests", "ipatests.test_cmdline", "ipatests.test_install", + "ipatests.test_integration", "ipatests.test_ipalib", "ipatests.test_ipapython", "ipatests.test_ipaserver", "ipatests.test_ipaserver.install", "ipatests.test_pkcs10", "ipatests.test_xmlrpc"], - scripts=['ipa-run-tests'], + scripts=['ipa-run-tests', 'ipa-test-config'], package_data = { 'ipatests.test_install': ['*.update'], 'ipatests.test_pkcs10': ['*.csr']} -- cgit