Skip to content

Commit

Permalink
Disable runtime bindings in ITs
Browse files Browse the repository at this point in the history
  • Loading branch information
markhobson committed Oct 27, 2023
1 parent 61dfbb1 commit 7d34e22
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/integration/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def config_fixture() -> Mapping[str, Any]:
@pytest.fixture(name="app")
def app_fixture(config: Mapping[str, Any]) -> Generator[Flask, Any, Any]:
app = create_app(config)
inject.clear_and_configure(_bindings)
inject.clear_and_configure(_bindings, bind_in_runtime=False)
yield app
inject.clear()

Expand Down

0 comments on commit 7d34e22

Please sign in to comment.