Skip to content

Commit

Permalink
tests(bundle-integration): Reduce idle_period to 30
Browse files Browse the repository at this point in the history
Reduce idle_period from 120 to 30 to avoid huge amount of waiting and
tests failing. A very large idle_period had as a result the
wait_for_idle to time out due to one of the charms constantly doing
expected `execute` stuff in these two minutes.
  • Loading branch information
orfeas-k committed Oct 19, 2023
1 parent 0ccc439 commit a3db7cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/integration/test_kfp_functional.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ async def test_build_and_deploy(ops_test: OpsTest, request, lightkube_client):
raise_on_blocked=False, # These apps block while waiting for each other to deploy/relate
raise_on_error=True,
timeout=3600,
idle_period=120,
idle_period=30,
)

# ---- KFP API Server focused test cases
Expand Down

0 comments on commit a3db7cc

Please sign in to comment.