Skip to content

Commit

Permalink
give reason
Browse files Browse the repository at this point in the history
  • Loading branch information
martindurant committed Nov 8, 2024
1 parent 3fc017e commit f02fa2b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_fsspec.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ def test_cat_ranges_two(fs):
assert out == [data1[10:20], data2[10:20]]


@pytest.mark.xfail("negative and mixed ranges not implemented")
@pytest.mark.xfail(reason="negative and mixed ranges not implemented")
def test_cat_ranges_mixed(fs):
data1 = os.urandom(10000)
data2 = os.urandom(10000)
Expand All @@ -109,7 +109,7 @@ def test_cat_ranges_mixed(fs):
assert out == [data1[-10:], data1[:-10], data2[10:-10]]


@pytest.mark.xfail("atomic writes not working on moto")
@pytest.mark.xfail(reason="atomic writes not working on moto")
def test_atomic_write(fs):
fs.pipe_file("data1", b"data1")
fs.pipe_file("data1", b"data1", mode="overwrite")
Expand Down

0 comments on commit f02fa2b

Please sign in to comment.