From 08315f287861662d412f48f2084bc8402c550f41 Mon Sep 17 00:00:00 2001 From: Barry Wu Date: Sat, 30 Aug 2025 00:36:52 +0800 Subject: [PATCH 1/3] Extend waiting time in test_attr_access_sd Signed-off-by: Barry Wu --- tests/flytekit/integration/remote/test_remote.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/flytekit/integration/remote/test_remote.py b/tests/flytekit/integration/remote/test_remote.py index 18481d9e69..25384b6eec 100644 --- a/tests/flytekit/integration/remote/test_remote.py +++ b/tests/flytekit/integration/remote/test_remote.py @@ -991,7 +991,7 @@ def test_attr_access_sd(): execution_id = run("attr_access_sd.py", "wf", "--uri", remote_file_path) remote = FlyteRemote(Config.auto(config_file=CONFIG), PROJECT, DOMAIN) execution = remote.fetch_execution(name=execution_id) - execution = remote.wait(execution=execution, timeout=datetime.timedelta(minutes=15)) + execution = remote.wait(execution=execution, timeout=datetime.timedelta(minutes=25)) assert execution.error is None, f"Execution failed with error: {execution.error}" assert execution.closure.phase == WorkflowExecutionPhase.SUCCEEDED, f"Execution failed with phase: {execution.closure.phase}" From b8608eaf05f6b2a8cc40d3bf97ba2a0e4b7df522 Mon Sep 17 00:00:00 2001 From: Barry Wu Date: Fri, 12 Sep 2025 22:56:26 -0500 Subject: [PATCH 2/3] Change PYTEST_OPTS to 1 Signed-off-by: Barry Wu --- .github/workflows/pythonbuild.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pythonbuild.yml b/.github/workflows/pythonbuild.yml index ca8cf91015..c07e48a189 100644 --- a/.github/workflows/pythonbuild.yml +++ b/.github/workflows/pythonbuild.yml @@ -268,7 +268,7 @@ jobs: env: FLYTEKIT_IMAGE: localhost:30000/flytekit:dev FLYTEKIT_CI: 1 - PYTEST_OPTS: -n2 + PYTEST_OPTS: -n1 AWS_ENDPOINT_URL: 'http://localhost:30002' AWS_ACCESS_KEY_ID: minio AWS_SECRET_ACCESS_KEY: miniostorage From 8b1db47c2f93046c3b53e31f0689bcce255258c9 Mon Sep 17 00:00:00 2001 From: Barry Wu Date: Wed, 24 Sep 2025 09:01:23 -0500 Subject: [PATCH 3/3] Trigger CI Signed-off-by: Barry Wu