Skip to content

Commit

Permalink
Drop test test_fatally_serialized_input
Browse files Browse the repository at this point in the history
  • Loading branch information
fjetter committed Feb 21, 2023
1 parent ad529cc commit 4174ce0
Showing 1 changed file with 0 additions and 22 deletions.
22 changes: 0 additions & 22 deletions distributed/tests/test_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -1951,17 +1951,6 @@ def __setstate__(self, state):
raise TypeError("hello!")


class FatallySerializedObject:
def __getstate__(self):
return 1

def __setstate__(self, state):
print("This should never have been deserialized, closing")
import sys

sys.exit(0)


@gen_cluster(client=True)
async def test_badly_serialized_input(c, s, a, b):
o = BadlySerializedObject()
Expand Down Expand Up @@ -2589,17 +2578,6 @@ async def test_dont_delete_recomputed_results(c, s, w):
await asyncio.sleep(0.01)


@pytest.mark.xfail(reason="not sure, yet")
@gen_cluster(nthreads=[], client=True)
async def test_fatally_serialized_input(c, s):
o = FatallySerializedObject()

future = c.submit(inc, o)

while not s.tasks:
await asyncio.sleep(0.01)


@pytest.mark.skip(reason="Use fast random selection now")
@gen_cluster(client=True)
async def test_balance_tasks_by_stacks(c, s, a, b):
Expand Down

0 comments on commit 4174ce0

Please sign in to comment.