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

Clone 0f #8403 "use updated python client in spark integration tests" for CI #8405

Draft
wants to merge 2 commits into
base: master
Choose a base branch
from
Draft
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 test/spark/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
lakefs_client==0.104.0
lakefs-sdk==1.43.0
python-on-whales==0.62.0
tenacity==8.2.2
8 changes: 4 additions & 4 deletions test/spark/run-test.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import argparse
import sys

import lakefs_client
from lakefs_client import models
from lakefs_client.client import LakeFSClient
import lakefs_sdk
from lakefs_sdk import models
from lakefs_sdk.client import LakeFSClient
from python_on_whales import docker
from tenacity import retry, stop_after_attempt, wait_fixed

Expand Down Expand Up @@ -48,7 +48,7 @@ def main():
submit_flags = ["--jars", "/target/client.jar"]

lfs_client = LakeFSClient(
lakefs_client.Configuration(username=lakefs_access_key,
lakefs_sdk.Configuration(username=lakefs_access_key,
password=lakefs_secret_key,
host='http://localhost:8000'))
wait_for_setup(lfs_client)
Expand Down
Loading