diff --git a/postgres/tests/conftest.py b/postgres/tests/conftest.py index 162c2de0b12f9..5fed60cc93a42 100644 --- a/postgres/tests/conftest.py +++ b/postgres/tests/conftest.py @@ -67,7 +67,9 @@ def pg_instance(): @pytest.fixture(scope='session') def e2e_instance(): - return copy.deepcopy(INSTANCE) + instance = copy.deepcopy(INSTANCE) + instance['dbm'] = True + return instance @pytest.fixture()