From 8a049810626d840f6d02ac18234d2e50a03c163e Mon Sep 17 00:00:00 2001 From: Amine Hilaly Date: Sun, 24 Mar 2024 22:24:59 +0100 Subject: [PATCH] Increase `MODIFY_WAIT_AFTER_SECONDS` to 90 It looks like we have more than one flaky test. So ideally we want to increase the root `MODIFY_WAIT_AFTER_SECONDS` to 90 seconds. Signed-off-by: Amine Hilaly --- test/e2e/tests/test_table.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/e2e/tests/test_table.py b/test/e2e/tests/test_table.py index 4e0e2ec..f0f7536 100644 --- a/test/e2e/tests/test_table.py +++ b/test/e2e/tests/test_table.py @@ -31,7 +31,7 @@ RESOURCE_PLURAL = "tables" DELETE_WAIT_AFTER_SECONDS = 15 -MODIFY_WAIT_AFTER_SECONDS = 30 +MODIFY_WAIT_AFTER_SECONDS = 90 def new_gsi_dict(index_name: str, hash_key: str, read_write_pt: int): return { @@ -348,7 +348,7 @@ def test_enable_stream_specification(self, table_lsi): table.wait_until( table_name, table.stream_specification_matches(False), - timeout_seconds=MODIFY_WAIT_AFTER_SECONDS*3, + timeout_seconds=MODIFY_WAIT_AFTER_SECONDS, interval_seconds=3, )