Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test ci #2999

Closed
wants to merge 4 commits into from
Closed

test ci #2999

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/pythonbuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ jobs:
key: ${{ format('{0}-pip-{1}', runner.os, hashFiles('dev-requirements.in', 'requirements.in')) }}
- name: Install dependencies
run: |
pip install uv
pip install uv==0.5.6
make setup-global-uv
uv pip freeze
- name: Install FlyteCTL
Expand Down
3 changes: 3 additions & 0 deletions dev-requirements.in
Original file line number Diff line number Diff line change
Expand Up @@ -60,3 +60,6 @@ ipykernel

orjson
kubernetes>=12.0.1

google-api-core==2.23.0
google-auth==2.36.0
2 changes: 1 addition & 1 deletion tests/flytekit/integration/remote/test_remote.py
Original file line number Diff line number Diff line change
Expand Up @@ -615,7 +615,7 @@ def _ephemeral_minio_project_domain_filename_root(s3_client, project, domain):
@pytest.mark.parametrize("gigabytes", [2, 3])
def test_flyteremote_uploads_large_file(gigabytes):
"""This test checks whether FlyteRemote can upload large files."""
remote = FlyteRemote(Config.auto(config_file=CONFIG), PROJECT, DOMAIN)
remote = FlyteRemote(Config.for_sandbox(), PROJECT, DOMAIN)
minio_s3_client = TestLargeFileTransfers._get_minio_s3_client(remote)
with ExitStack() as stack:
# Step 1 - Create a large local file
Expand Down
Loading