diff options
author | Rob Crittenden <rcritten@redhat.com> | 2015-04-21 09:34:41 -0400 |
---|---|---|
committer | Rob Crittenden <rcritten@redhat.com> | 2015-05-11 16:45:53 -0400 |
commit | 6c7e6f614cc41b49575069dc543441f3982abcb3 (patch) | |
tree | fa27ce055cd65e4e7b8ef1dc07d9b59459f7a5d0 /tests/helpers/common.py | |
parent | 9145bdded79662865763c744a1de66131675f1ad (diff) | |
download | ipsilon.git-6c7e6f614cc41b49575069dc543441f3982abcb3.tar.gz ipsilon.git-6c7e6f614cc41b49575069dc543441f3982abcb3.tar.xz ipsilon.git-6c7e6f614cc41b49575069dc543441f3982abcb3.zip |
Configure the SAML2 session database during installation
https://fedorahosted.org/ipsilon/ticket/90
Signed-off-by: Rob Crittenden <rcritten@redhat.com>
Diffstat (limited to 'tests/helpers/common.py')
-rwxr-xr-x | tests/helpers/common.py | 3 |
1 files changed, 2 insertions, 1 deletions
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) |