Skip to content

Commit

Permalink
xfail two flaky tests, #2355, #2356
Browse files Browse the repository at this point in the history
  • Loading branch information
simonw committed Jun 13, 2024
1 parent 8f86d2a commit 45c2760
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions tests/test_api_write.py
Original file line number Diff line number Diff line change
Expand Up @@ -1359,6 +1359,7 @@ async def test_create_table_permissions(


@pytest.mark.asyncio
@pytest.mark.xfail(reason="Flaky, see https://github.com/simonw/datasette/issues/2356")
@pytest.mark.parametrize(
"input,expected_rows_after",
(
Expand Down
2 changes: 1 addition & 1 deletion tests/test_csv.py
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ async def test_csv_with_non_ascii_characters(ds_client):
assert response.text == "text,number\r\n𝐜𝐢𝐭𝐢𝐞𝐬,1\r\nbob,2\r\n"


@pytest.mark.skip(reason="flakey")
@pytest.mark.xfail(reason="Flaky, see https://github.com/simonw/datasette/issues/2355")
def test_max_csv_mb(app_client_csv_max_mb_one):
# This query deliberately generates a really long string
# should be 100*100*100*2 = roughly 2MB
Expand Down

0 comments on commit 45c2760

Please sign in to comment.