forked from goodboy/tractor
Use new `._debug._repl_fail_msg` inside `test_pause_from_sync`
parent
43a8cf4be1
commit
a6058d14ae
|
@ -12,11 +12,8 @@ TODO:
|
||||||
"""
|
"""
|
||||||
from functools import partial
|
from functools import partial
|
||||||
import itertools
|
import itertools
|
||||||
# from os import path
|
|
||||||
from typing import Optional
|
|
||||||
import platform
|
import platform
|
||||||
import pathlib
|
import pathlib
|
||||||
# import sys
|
|
||||||
import time
|
import time
|
||||||
|
|
||||||
import pytest
|
import pytest
|
||||||
|
@ -29,6 +26,7 @@ from pexpect.exceptions import (
|
||||||
from tractor.devx._debug import (
|
from tractor.devx._debug import (
|
||||||
_pause_msg,
|
_pause_msg,
|
||||||
_crash_msg,
|
_crash_msg,
|
||||||
|
_repl_fail_msg,
|
||||||
)
|
)
|
||||||
from tractor._testing import (
|
from tractor._testing import (
|
||||||
examples_dir,
|
examples_dir,
|
||||||
|
@ -293,7 +291,7 @@ def do_ctlc(
|
||||||
child,
|
child,
|
||||||
count: int = 3,
|
count: int = 3,
|
||||||
delay: float = 0.1,
|
delay: float = 0.1,
|
||||||
patt: Optional[str] = None,
|
patt: str|None = None,
|
||||||
|
|
||||||
# expect repl UX to reprint the prompt after every
|
# expect repl UX to reprint the prompt after every
|
||||||
# ctrl-c send.
|
# ctrl-c send.
|
||||||
|
@ -1306,7 +1304,7 @@ def test_shield_pause(
|
||||||
[
|
[
|
||||||
_crash_msg,
|
_crash_msg,
|
||||||
"('cancelled_before_pause'", # actor name
|
"('cancelled_before_pause'", # actor name
|
||||||
"Failed to engage debugger via `_pause()`",
|
_repl_fail_msg,
|
||||||
"trio.Cancelled",
|
"trio.Cancelled",
|
||||||
"raise Cancelled._create()",
|
"raise Cancelled._create()",
|
||||||
|
|
||||||
|
@ -1324,7 +1322,7 @@ def test_shield_pause(
|
||||||
[
|
[
|
||||||
_crash_msg,
|
_crash_msg,
|
||||||
"('root'", # actor name
|
"('root'", # actor name
|
||||||
"Failed to engage debugger via `_pause()`",
|
_repl_fail_msg,
|
||||||
"trio.Cancelled",
|
"trio.Cancelled",
|
||||||
"raise Cancelled._create()",
|
"raise Cancelled._create()",
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue