Skip to content

Commit

Permalink
ci: disable flaky async test (#23527)
Browse files Browse the repository at this point in the history
  • Loading branch information
villebro authored Mar 31, 2023
1 parent 068163e commit 330e79b
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tests/integration_tests/csv_upload_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 330e79b

Please sign in to comment.