forked from goodboy/tractor
Tolerate eg in runtime test teardown
parent
e298b70edf
commit
0a1bf8e57d
|
@ -62,7 +62,10 @@ async def test_lifetime_stack_wipes_tmpfile(
|
||||||
)
|
)
|
||||||
).result()
|
).result()
|
||||||
|
|
||||||
except tractor.RemoteActorError:
|
except (
|
||||||
|
tractor.RemoteActorError,
|
||||||
|
tractor.BaseExceptionGroup,
|
||||||
|
):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
# tmp file should have been wiped by
|
# tmp file should have been wiped by
|
||||||
|
|
Loading…
Reference in New Issue