Merge pull request #37924 from ClickHouse/tavplubix-patch-1

Disable flaky tests with MaterializedPostgreSQL
This commit is contained in:
Kseniia Sumarokova 2022-06-09 12:03:05 +02:00 committed by GitHub
commit fac824523d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 0 deletions

View File

@ -766,6 +766,8 @@ def test_concurrent_transactions(started_cluster):
def test_abrupt_connection_loss_while_heavy_replication(started_cluster):
pytest.skip("Temporary disabled (FIXME)")
def transaction(thread_id):
if thread_id % 2:
conn = get_postgres_conn(
@ -841,6 +843,8 @@ def test_restart_server_while_replication_startup_not_finished(started_cluster):
def test_abrupt_server_restart_while_heavy_replication(started_cluster):
pytest.skip("Temporary disabled (FIXME)")
def transaction(thread_id):
if thread_id % 2:
conn = get_postgres_conn(

View File

@ -545,6 +545,7 @@ def test_connection_loss(started_cluster):
@pytest.mark.timeout(320)
def test_clickhouse_restart(started_cluster):
pytest.skip("Temporary disabled (FIXME)")
conn = get_postgres_conn(
ip=started_cluster.postgres_ip,
port=started_cluster.postgres_port,