Skip to content

Commit

Permalink
🐞 fix: Fix echoback and echo filter
Browse files Browse the repository at this point in the history
  • Loading branch information
wychlw committed Sep 19, 2024
1 parent 5473150 commit bac6612
Show file tree
Hide file tree
Showing 7 changed files with 245 additions and 76 deletions.
154 changes: 140 additions & 14 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ ssh2 = "0.9.4"
toml = "0.8.19"
colored = "2.1.0"
nix = { version = "0.29.0", features = ["fs", "process", "signal", "term"] }
ptyprocess = "0.4.1"
vte = "0.13.0"
image = "0.25.2"
xcap = "0.0.13"
enigo = "0.2.1"
portable-pty = "0.8.1"

[toolchain]
channel = "nightly"
9 changes: 4 additions & 5 deletions python/tester/__init__.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
from .tester import *
from .hook import GlobalCallHook
from .direct_script import DirectScript
from .tty_abst import TtyAbst

__doc__ = tester.__doc__
__doc__ = None
if hasattr(tester, "__all__"):
__all__ = tester.__all__

from .hook import GlobalCallHook
from .direct_script import DirectScript
from .tty_abst import TtyAbst
Loading

0 comments on commit bac6612

Please sign in to comment.