From 330e79bc5d2392c42f9ccbacbd794cbfda586f2c Mon Sep 17 00:00:00 2001 From: Ville Brofeldt <33317356+villebro@users.noreply.github.com> Date: Fri, 31 Mar 2023 07:59:49 +0300 Subject: [PATCH] ci: disable flaky async test (#23527) --- tests/integration_tests/csv_upload_tests.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/integration_tests/csv_upload_tests.py b/tests/integration_tests/csv_upload_tests.py index 59fd3c1ef5997..d3b55f7bfed6d 100644 --- a/tests/integration_tests/csv_upload_tests.py +++ b/tests/integration_tests/csv_upload_tests.py @@ -233,6 +233,9 @@ def test_import_csv_enforced_schema(mock_event_logger): if utils.backend() == "sqlite": pytest.skip("Sqlite doesn't support schema / database creation") + if utils.backend() == "mysql": + pytest.skip("This test is flaky on MySQL") + full_table_name = f"admin_database.{CSV_UPLOAD_TABLE_W_SCHEMA}" # Invalid table name