Skip to content

Commit

Permalink
update image name in conftest
Browse files Browse the repository at this point in the history
  • Loading branch information
kelkawi-a committed Oct 16, 2024
1 parent d388798 commit 6e09dac
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions charmcraft.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -81,10 +81,10 @@ config:
# Your workload’s containers.
containers:
airbyte-webapp:
resource: airbyte-ui
resource: airbyte-ui-image

# This field populates the Resources tab on Charmhub.
resources:
airbyte-ui:
airbyte-ui-image:
type: oci-image
description: OCI image for Airbyte web UI
2 changes: 1 addition & 1 deletion tests/integration/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ async def charm_fixture(request: FixtureRequest, ops_test: OpsTest) -> str | Pat
@pytest_asyncio.fixture(name="deploy", scope="module")
async def deploy(ops_test: OpsTest, charm: str, charm_image: str):
"""Test the app is up and running."""
resources = {"airbyte-webapp": charm_image}
resources = {"airbyte-ui-image": charm_image}

asyncio.gather(
ops_test.model.deploy(charm, resources=resources, application_name=APP_NAME_AIRBYTE_UI),
Expand Down

0 comments on commit 6e09dac

Please sign in to comment.