Skip to content

Commit 4d21550

Browse files
authored
Extend waiting time in test_attr_access_sd (#3324)
Signed-off-by: Barry Wu <a0987818905@gmail.com>
1 parent 90f5751 commit 4d21550

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/pythonbuild.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@ jobs:
268268
env:
269269
FLYTEKIT_IMAGE: localhost:30000/flytekit:dev
270270
FLYTEKIT_CI: 1
271-
PYTEST_OPTS: -n2
271+
PYTEST_OPTS: -n1
272272
AWS_ENDPOINT_URL: 'http://localhost:30002'
273273
AWS_ACCESS_KEY_ID: minio
274274
AWS_SECRET_ACCESS_KEY: miniostorage

tests/flytekit/integration/remote/test_remote.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -991,7 +991,7 @@ def test_attr_access_sd():
991991
execution_id = run("attr_access_sd.py", "wf", "--uri", remote_file_path)
992992
remote = FlyteRemote(Config.auto(config_file=CONFIG), PROJECT, DOMAIN)
993993
execution = remote.fetch_execution(name=execution_id)
994-
execution = remote.wait(execution=execution, timeout=datetime.timedelta(minutes=15))
994+
execution = remote.wait(execution=execution, timeout=datetime.timedelta(minutes=25))
995995
assert execution.error is None, f"Execution failed with error: {execution.error}"
996996
assert execution.closure.phase == WorkflowExecutionPhase.SUCCEEDED, f"Execution failed with phase: {execution.closure.phase}"
997997

0 commit comments

Comments
 (0)