Skip to content

Commit

Permalink
Point pyspark test to the local dockjer-compose setup
Browse files Browse the repository at this point in the history
This still is not working, but it's not totally failing I guess
  • Loading branch information
rtyler committed Jan 24, 2024
1 parent 0e2104b commit 6cfc616
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -183,6 +183,11 @@ def delete_dynamodb_table(table_name: str):

@pytest.fixture
def setup():
os.environ['AWS_ENDPOINT_URL'] = 'http://localhost:4566'
os.environ['AWS_REGION'] = 'us-east-1'
os.environ['AWS_ACCESS_KEY_ID'] = 'deltalake'
os.environ['AWS_SECRET_ACCESS_KEY'] = 'weloverust'
os.environ['AWS_ALLOW_HTTP'] = 'true'
id = uuid.uuid4()
bucket_name = f"delta-rs-integration-{id}"
bucket_url = f"s3://{bucket_name}"
Expand Down

0 comments on commit 6cfc616

Please sign in to comment.