Skip to content

Commit 9ee7e0b

Browse files
committed
Increase timeout limit for test case
This test seems to be intermittently failing on CI with a timeout, but despite the frequency of failure, there doesn't seem to be any fundamental reason for it to fail and it works locally %100 of time. So trying to increase the timeout limit to see if all it needs is more time.
1 parent e1084a5 commit 9ee7e0b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/integration/test_model.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -623,7 +623,7 @@ async def test_local_oci_image_resource_charm(event_loop):
623623
lambda: (
624624
len(charm.units) > 0 and
625625
charm.units[0].workload_status in terminal_statuses),
626-
timeout=60 * 4,
626+
timeout=60 * 10,
627627
)
628628
assert charm.units[0].workload_status == 'active'
629629

0 commit comments

Comments
 (0)