Skip to content

Commit e229d54

Browse files
Merge branch 'main' of https://github.com/dask/distributed into redirect-from-prefix-root
2 parents 4d9d6e8 + fe5e431 commit e229d54

File tree

3 files changed

+1
-14
lines changed

3 files changed

+1
-14
lines changed

.github/workflows/test-report.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
mv test_report.html test_short_report.html deploy/
5454
5555
- name: Deploy 🚀
56-
uses: JamesIves/[email protected].2
56+
uses: JamesIves/[email protected].3
5757
with:
5858
branch: gh-pages
5959
folder: deploy

distributed/http/scheduler/tests/test_scheduler_http.py

-2
Original file line numberDiff line numberDiff line change
@@ -571,8 +571,6 @@ async def test_sitemap(s, a, b):
571571
"[",
572572
"'",
573573
'"',
574-
b"123",
575-
(b"123", 1),
576574
("[", 1),
577575
("(", 1),
578576
("'", 1),

distributed/tests/test_client.py

-11
Original file line numberDiff line numberDiff line change
@@ -5412,17 +5412,6 @@ def test_dynamic_workloads_sync_random(c):
54125412
assert future.result(timeout=20) == 52
54135413

54145414

5415-
@gen_cluster(client=True)
5416-
async def test_bytes_keys(c, s, a, b):
5417-
key = b"inc-123"
5418-
future = c.submit(inc, 1, key=key)
5419-
result = await future
5420-
assert type(future.key) is bytes
5421-
assert set(s.tasks) == {key}
5422-
assert key in a.data or key in b.data
5423-
assert result == 2
5424-
5425-
54265415
@gen_cluster(client=True)
54275416
async def test_unicode_ascii_keys(c, s, a, b):
54285417
uni_type = str

0 commit comments

Comments
 (0)