This commit is contained in:
Yatsishin Ilya 2024-08-28 16:18:57 +00:00
parent aed953bf94
commit 82eae9f09f
2 changed files with 2 additions and 2 deletions

View File

@ -33,7 +33,7 @@ CLICKHOUSE_BINARY_PATH = "usr/bin/clickhouse"
CLICKHOUSE_ODBC_BRIDGE_BINARY_PATH = "usr/bin/clickhouse-odbc-bridge"
CLICKHOUSE_LIBRARY_BRIDGE_BINARY_PATH = "usr/bin/clickhouse-library-bridge"
FLAKY_TRIES_COUNT = 5 # run whole pytest several times
FLAKY_TRIES_COUNT = 3 # run whole pytest several times
FLAKY_REPEAT_COUNT = 5 # runs test case in single module several times
MAX_TIME_SECONDS = 3600

View File

@ -182,4 +182,4 @@ def test_multiple_tables(started_cluster):
for i in order:
assert query(f"select count() from test.table_{i}") == "100\n"
for i in range(tables_count):
query(f"drop table test.table_{i}")
query(f"drop table test.table_{i} sync")