Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
dorooleg committed Jun 20, 2024
1 parent dba548d commit bff7c24
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions ydb/core/kqp/gateway/ut/ya.make
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ SRCS(

PEERDIR(
ydb/core/kqp/gateway
ydb/core/kqp/session_actor
ydb/library/yql/parser/pg_wrapper
ydb/library/yql/public/udf/service/stub
ydb/services/metadata
Expand Down
8 changes: 4 additions & 4 deletions ydb/tests/fq/s3/test_s3.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@

import boto3
import logging
import os
import pytest
import time
import uuid
import ydb.public.api.protos.draft.fq_pb2 as fq
import ydb.public.api.protos.ydb_value_pb2 as ydb
import ydb.tests.library.common.yatest_common as yatest_common
Expand Down Expand Up @@ -84,7 +84,8 @@ def test_csv(self, kikimr, s3, client, runtime_listing, yq_version):

@yq_v2
@pytest.mark.parametrize("client", [{"folder_id": "my_folder"}], indirect=True)
def test_inference(self, kikimr, s3, client, unique_prefix):
def test_inference(self, kikimr, s3, client):
unique_prefix = str(uuid.uuid4())
resource = boto3.resource(
"s3",
endpoint_url=s3.s3_url,
Expand Down Expand Up @@ -354,8 +355,7 @@ def test_bad_format(self, kikimr, s3, client, runtime_listing, yq_version):

@yq_v1
@pytest.mark.parametrize("client", [{"folder_id": "my_folder"}], indirect=True)
@pytest.mark.parametrize("mvp_external_ydb_endpoint", [{"endpoint": os.getenv("YDB_ENDPOINT")}], indirect=True)
def test_checkpoints_on_join_s3_with_yds(self, kikimr, s3, client, unique_prefix):
def test_checkpoints_on_join_s3_with_yds(self, kikimr, s3, client):
# Prepare S3
resource = boto3.resource(
"s3",
Expand Down

0 comments on commit bff7c24

Please sign in to comment.