forked from goodboy/tractor
Skip `advanced_faults/` subset in docs examples tests
parent
7fddb4416b
commit
3a0817ff55
|
@ -26,7 +26,6 @@ async def break_channel_silently_then_error(
|
||||||
# doesn't get stuck in debug or hang on the connection join.
|
# doesn't get stuck in debug or hang on the connection join.
|
||||||
# this more or less simulates an infinite msg-receive hang on
|
# this more or less simulates an infinite msg-receive hang on
|
||||||
# the other end.
|
# the other end.
|
||||||
# if msg > 66:
|
|
||||||
await stream._ctx.chan.send(None)
|
await stream._ctx.chan.send(None)
|
||||||
assert 0
|
assert 0
|
||||||
|
|
||||||
|
@ -64,7 +63,6 @@ async def recv_and_spawn_net_killers(
|
||||||
if i > 80:
|
if i > 80:
|
||||||
n.start_soon(break_channel_silently_then_error, stream)
|
n.start_soon(break_channel_silently_then_error, stream)
|
||||||
n.start_soon(close_stream_and_error, stream)
|
n.start_soon(close_stream_and_error, stream)
|
||||||
await trio.sleep_forever()
|
|
||||||
|
|
||||||
|
|
||||||
async def main(
|
async def main(
|
||||||
|
@ -92,7 +90,9 @@ async def main(
|
||||||
async with ctx.open_stream() as stream:
|
async with ctx.open_stream() as stream:
|
||||||
for i in range(100):
|
for i in range(100):
|
||||||
|
|
||||||
# this may break in the mp_spawn case
|
# it actually breaks right here in the
|
||||||
|
# mp_spawn/forkserver backends and thus the zombie
|
||||||
|
# reaper never even kicks in?
|
||||||
await stream.send(i)
|
await stream.send(i)
|
||||||
|
|
||||||
with trio.move_on_after(2) as cs:
|
with trio.move_on_after(2) as cs:
|
||||||
|
@ -102,7 +102,7 @@ async def main(
|
||||||
if cs.cancelled_caught:
|
if cs.cancelled_caught:
|
||||||
# pretend to be a user seeing no streaming action
|
# pretend to be a user seeing no streaming action
|
||||||
# thinking it's a hang, and then hitting ctl-c..
|
# thinking it's a hang, and then hitting ctl-c..
|
||||||
print("YOO i'm a user and, thingz hangin.. CTL-C CTRL-C..")
|
print("YOO i'm a user anddd thingz hangin.. CTRL-C..")
|
||||||
raise KeyboardInterrupt
|
raise KeyboardInterrupt
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -88,6 +88,7 @@ def run_example_in_subproc(
|
||||||
and f[0] != '_'
|
and f[0] != '_'
|
||||||
and 'debugging' not in p[0]
|
and 'debugging' not in p[0]
|
||||||
and 'integration' not in p[0]
|
and 'integration' not in p[0]
|
||||||
|
and 'advanced_faults' not in p[0]
|
||||||
],
|
],
|
||||||
|
|
||||||
ids=lambda t: t[1],
|
ids=lambda t: t[1],
|
||||||
|
|
Loading…
Reference in New Issue