We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1745bac commit 8eaad01Copy full SHA for 8eaad01
1 file changed
tests/integration/test_model.py
@@ -702,7 +702,7 @@ async def test_local_file_resource_charm(event_loop):
702
app = await model.deploy(str(charm_path), resources=resources)
703
assert 'file-resource-charm' in model.applications
704
705
- await model.wait_for_idle()
+ await model.wait_for_idle(raise_on_error=False)
706
assert app.units[0].agent_status == 'idle'
707
708
ress = await app.get_resources()
@@ -718,7 +718,7 @@ async def test_attach_resource(event_loop):
718
719
720
721
722
723
724
with open(str(charm_path / 'test.file')) as f:
0 commit comments