Skip to content

Commit

Permalink
Fix integration test
Browse files Browse the repository at this point in the history
  • Loading branch information
arturo-seijas committed Sep 7, 2023
1 parent 3ade1eb commit b9c23c6
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/integration/test_charm.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,9 @@ async def test_build_and_deploy(ops_test: OpsTest, pytestconfig: pytest.Config):
resources = {"httpbin-image": METADATA["resources"]["httpbin-image"]["upstream-source"]}
assert ops_test.model
await asyncio.gather(
ops_test.model.deploy(f"./{charm}", resources=resources, application_name=APP_NAME),
ops_test.model.deploy(
f"./{charm}", resources=resources, application_name=APP_NAME, series="jammy"
),
ops_test.model.wait_for_idle(
apps=[APP_NAME], status="active", raise_on_blocked=True, timeout=1000
),
Expand Down

0 comments on commit b9c23c6

Please sign in to comment.