From 71872fc3c3dfa9a9019e22f58e8204ec7c412ebf Mon Sep 17 00:00:00 2001 From: alesapin Date: Tue, 25 Jun 2019 22:26:26 +0300 Subject: [PATCH] Disable cluster copier tests --- dbms/tests/integration/test_cluster_copier/test.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/dbms/tests/integration/test_cluster_copier/test.py b/dbms/tests/integration/test_cluster_copier/test.py index c223a73f59e..005655e938a 100644 --- a/dbms/tests/integration/test_cluster_copier/test.py +++ b/dbms/tests/integration/test_cluster_copier/test.py @@ -260,24 +260,31 @@ def execute_task(task, cmd_options): # Tests +@pytest.mark.skip(reason="Fails under asan") def test_copy1_simple(started_cluster): execute_task(Task1(started_cluster), []) +@pytest.mark.skip(reason="Fails under asan") def test_copy1_with_recovering(started_cluster): execute_task(Task1(started_cluster), ['--copy-fault-probability', str(COPYING_FAIL_PROBABILITY)]) +@pytest.mark.skip(reason="Fails under asan") def test_copy_month_to_week_partition(started_cluster): execute_task(Task2(started_cluster), []) +@pytest.mark.skip(reason="Fails under asan") def test_copy_month_to_week_partition_with_recovering(started_cluster): execute_task(Task2(started_cluster), ['--copy-fault-probability', str(0.3)]) +@pytest.mark.skip(reason="Fails under asan") def test_block_size(started_cluster): execute_task(Task_test_block_size(started_cluster), []) +@pytest.mark.skip(reason="Fails under asan") def test_no_index(started_cluster): execute_task(Task_no_index(started_cluster), []) +@pytest.mark.skip(reason="Fails under asan") def test_no_arg(started_cluster): execute_task(Task_no_arg(started_cluster), [])