diff options
Diffstat (limited to 'tests')
-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) |