From d406c8094261513e6080eef0c397fdc026bc1da5 Mon Sep 17 00:00:00 2001 From: Ville Brofeldt <33317356+villebro@users.noreply.github.com> Date: Wed, 4 Sep 2024 12:27:32 -0700 Subject: [PATCH] chore(tests): skip extremely flaky gaq test (#30072) --- tests/integration_tests/charts/data/api_tests.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/integration_tests/charts/data/api_tests.py b/tests/integration_tests/charts/data/api_tests.py index 56b0a9a79..abfc4dd83 100644 --- a/tests/integration_tests/charts/data/api_tests.py +++ b/tests/integration_tests/charts/data/api_tests.py @@ -718,6 +718,7 @@ class TestPostChartDataApi(BaseTestChartDataApi): if get_example_database().backend != "presto": assert "(\n 'boy' = 'boy'\n )" in result + @unittest.skip("Extremely flaky test on MySQL") @with_feature_flags(GLOBAL_ASYNC_QUERIES=True) @pytest.mark.usefixtures("load_birth_names_dashboard_with_slices") def test_chart_data_async(self):