Skip to content

Commit

Permalink
Add more details to skipped tests
Browse files Browse the repository at this point in the history
  • Loading branch information
guergana committed Dec 25, 2024
1 parent 1657b34 commit 2de7a31
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions server/endpoints/file/__spec__/test_fetch.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,17 @@

# Action


@pytest.mark.skip
@pytest.mark.skip(reason="Pytest-vcr new version bug")
@pytest.mark.vcr
def test_server_file_fetch(client):
client("/file/fetch", url=url1)
assert client("/file/read", path=url1name).bytes == url1bytes
assert client("/file/list").files == [
models.File(path=url1name, type="table", name="table", errors=0),
]


@pytest.mark.skip
@pytest.mark.skip(reason="Pytest-vcr new version bug")
@pytest.mark.vcr
def test_server_file_fetch_to_folder(client):
client("/folder/create", path=folder1)
path = client("/file/fetch", url=url1, folder=folder1).path
Expand Down

0 comments on commit 2de7a31

Please sign in to comment.