From 6c7e6f614cc41b49575069dc543441f3982abcb3 Mon Sep 17 00:00:00 2001 From: Rob Crittenden Date: Tue, 21 Apr 2015 09:34:41 -0400 Subject: Configure the SAML2 session database during installation https://fedorahosted.org/ipsilon/ticket/90 Signed-off-by: Rob Crittenden --- tests/helpers/common.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'tests/helpers/common.py') diff --git a/tests/helpers/common.py b/tests/helpers/common.py index aa35d83..93d0f17 100755 --- a/tests/helpers/common.py +++ b/tests/helpers/common.py @@ -186,7 +186,8 @@ class IpsilonTestBase(object): env=env, preexec_fn=os.setsid) self.processes.append(p) p.wait() - for d in ['adminconfig', 'users', 'transactions', 'sessions']: + for d in ['adminconfig', 'users', 'transactions', 'sessions', + 'saml2sessions']: cmd = ['/usr/bin/createdb', '-h', addr, '-p', port, d] subprocess.check_call(cmd, env=env) -- cgit