From bff7c24a74e0456d948f6522a4b01c57be5fc927 Mon Sep 17 00:00:00 2001 From: Oleg Doronin Date: Thu, 20 Jun 2024 15:48:08 +0000 Subject: [PATCH] cleanup --- ydb/core/kqp/gateway/ut/ya.make | 1 + ydb/tests/fq/s3/test_s3.py | 8 ++++---- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/ydb/core/kqp/gateway/ut/ya.make b/ydb/core/kqp/gateway/ut/ya.make index 8490d2025802..cc7d8a50f280 100644 --- a/ydb/core/kqp/gateway/ut/ya.make +++ b/ydb/core/kqp/gateway/ut/ya.make @@ -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 diff --git a/ydb/tests/fq/s3/test_s3.py b/ydb/tests/fq/s3/test_s3.py index 4791703d007b..8c084fb4566f 100644 --- a/ydb/tests/fq/s3/test_s3.py +++ b/ydb/tests/fq/s3/test_s3.py @@ -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 @@ -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, @@ -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",