ci: disable flaky async test (#23527)
This commit is contained in:
parent
068163e2a1
commit
330e79bc5d
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue