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 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}"