Make 'everything' test fixture pass --with-privileges

This commit is contained in:
Alvaro Gutierrez Perez 2018-07-09 21:29:49 +02:00
parent 7c3ec6b3c8
commit 4e0ec38f38
No known key found for this signature in database
GPG Key ID: 5186F8446CE87F52
2 changed files with 5 additions and 1 deletions

View File

@ -11,3 +11,5 @@ CREATE TYPE goodschema.sdfasdfasdf AS ENUM ('not shipped', 'shipped', 'delivered
create index on goodschema.t(id);
create view goodschema.v as select 1;
grant select on table t to postgres;

View File

@ -36,8 +36,10 @@ def outs():
def test_with_fixtures():
for FIXTURE_NAME in ['dependencies', 'everything']:
for FIXTURE_NAME in ['dependencies']:
do_fixture_test(FIXTURE_NAME)
for FIXTURE_NAME in ['everything']:
do_fixture_test(FIXTURE_NAME, with_privileges=True)
for FIXTURE_NAME in ['singleschema']:
do_fixture_test(FIXTURE_NAME, schema='goodschema')
for FIXTURE_NAME in ['singleschema_ext']: