Skip to content

Commit

Permalink
postgres enable dbm by default for E2E (#11202)
Browse files Browse the repository at this point in the history
Enable DBM by default for the E2E env to ensure DBM data is always flowing whenever anyone starts up a local env.
  • Loading branch information
djova committed Jan 25, 2022
1 parent eb302e8 commit b89996e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion postgres/tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit b89996e

Please sign in to comment.