Skip to content

Commit fb25d04

Browse files
committed
Fixed kikimr restarts limit
1 parent 745cf39 commit fb25d04

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

ydb/tests/fq/s3/conftest.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ def get_kikimr_extensions(s3: S3, yq_version: str, kikimr_settings, mvp_external
100100

101101
@pytest.fixture(scope="class")
102102
def kikimr_starts_counter():
103-
return TestCounter(10, "Number kikimr restarts in one class")
103+
return TestCounter(25, "Number kikimr restarts in one class")
104104

105105

106106
@pytest.fixture(scope="class")

ydb/tests/fq/s3/test_bindings.py

-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
#!/usr/bin/env python
22
# -*- coding: utf-8 -*-
33

4-
import time
54
import boto3
65
import logging
76
import pytest
@@ -249,7 +248,6 @@ def test_modify_connection_with_a_lot_of_bindings(
249248
@yq_all
250249
@pytest.mark.parametrize("client", [{"folder_id": "my_folder"}], indirect=True)
251250
def test_name_uniqueness_constraint(self, kikimr, client: FederatedQueryClient, unique_prefix):
252-
time.sleep(1000)
253251
# Test connection & binding creation
254252
kikimr.control_plane.wait_bootstrap(1)
255253
storage_connection_name = unique_prefix + "connection_name"

0 commit comments

Comments
 (0)