Skip to content

Commit

Permalink
Temporarily skip test_upload_file_zip on Python 3.13+
Browse files Browse the repository at this point in the history
  • Loading branch information
jrbourbeau committed Nov 13, 2024
1 parent 0fd7889 commit d49e34a
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions distributed/tests/test_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -1704,6 +1704,10 @@ async def test_upload_file_no_extension(c, s, a, b):
await c.upload_file(fn)


@pytest.mark.skipif(
sys.version_info >= (3, 13),
reason="Upstream issue in CPython. See https://github.com/dask/distributed/issues/8708 and https://github.com/python/cpython/issues/121342.",
)
@gen_cluster(client=True)
async def test_upload_file_zip(c, s, a, b):
def g():
Expand Down

0 comments on commit d49e34a

Please sign in to comment.