Skip to content

Commit 0daf3eb

Browse files
testing(platform): bump wait and download timeout for test_platform_heta_app_submit_and_wait from 3h to 5h
1 parent 5fdfd1a commit 0daf3eb

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

tests/aignostics/platform/e2e_test.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
TEST_APPLICATION_SUBMIT_AND_FIND_DUE_DATE_SECONDS = 60 * 60 * 24 # 24 hours
5757

5858
HETA_APPLICATION_SUBMIT_AND_WAIT_DUE_DATE_SECONDS = 60 * 60 * 1 # 1 hour
59-
HETA_APPLICATION_SUBMIT_AND_WAIT_DEADLINE_SECONDS = 60 * 60 * 3 # 3 hours
59+
HETA_APPLICATION_SUBMIT_AND_WAIT_DEADLINE_SECONDS = 60 * 60 * 5 # 5 hours
6060

6161
HETA_APPLICATION_SUBMIT_AND_FIND_DUE_DATE_SECONDS = 60 * 60 * 24 # 24 hours
6262
HETA_APPLICATION_SUBMIT_AND_FIND_DEADLINE_SECONDS = 60 * 60 * 24 # 24 hours
@@ -343,7 +343,7 @@ def test_platform_heta_app_submit_and_wait(record_property) -> None:
343343
@pytest.mark.skip(reason="Waits for change in scheduler")
344344
@pytest.mark.e2e
345345
@pytest.mark.long_running
346-
@pytest.mark.timeout(timeout=TEST_APPLICATION_SUBMIT_AND_WAIT_DEADLINE_SECONDS + 60 * 5)
346+
@pytest.mark.timeout(timeout=60 * 5)
347347
def test_platform_test_app_submit() -> None:
348348
"""Test application submission with the test application.
349349
@@ -368,7 +368,7 @@ def test_platform_test_app_submit() -> None:
368368
@pytest.mark.e2e
369369
@pytest.mark.very_long_running
370370
@pytest.mark.scheduled_only
371-
@pytest.mark.timeout(timeout=TEST_APPLICATION_SUBMIT_AND_FIND_DEADLINE_SECONDS + 60 * 5)
371+
@pytest.mark.timeout(timeout=60 * 5)
372372
def test_platform_test_app_find() -> None:
373373
"""Test application runs with the test application.
374374
@@ -393,7 +393,7 @@ def test_platform_test_app_find() -> None:
393393
@pytest.mark.e2e
394394
@pytest.mark.very_long_running
395395
@pytest.mark.scheduled_only
396-
@pytest.mark.timeout(timeout=HETA_APPLICATION_SUBMIT_AND_WAIT_DEADLINE_SECONDS + 60 * 5)
396+
@pytest.mark.timeout(timeout=60 * 5)
397397
def test_platform_heta_app_submit() -> None:
398398
"""Test application runs with the HETA application.
399399
@@ -418,7 +418,7 @@ def test_platform_heta_app_submit() -> None:
418418
@pytest.mark.e2e
419419
@pytest.mark.very_long_running
420420
@pytest.mark.scheduled_only
421-
@pytest.mark.timeout(timeout=HETA_APPLICATION_SUBMIT_AND_WAIT_DEADLINE_SECONDS + 60 * 5)
421+
@pytest.mark.timeout(timeout=60 * 5)
422422
def test_platform_heta_app_find() -> None:
423423
"""Test application runs with the HETA application.
424424

0 commit comments

Comments
 (0)