Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PR: Update winpty-rs to v0.3.4 #219

Merged
merged 6 commits into from
Mar 4, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Try again with blocking behaviour
  • Loading branch information
andfoy committed Mar 4, 2022
commit 52eb32b2bc53fee8a9fc5ca24202e3455956a616
2 changes: 1 addition & 1 deletion .github/workflows/windows_build.yml
Original file line number Diff line number Diff line change
@@ -15,7 +15,7 @@ jobs:
env:
PYTHON_VERSION: ${{ matrix.PYTHON_VERSION }}
RUNNER_OS: "windows"
PYWINPTY_BLOCK: "0"
PYWINPTY_BLOCK: "1"
CI_RUNNING: "1"
strategy:
fail-fast: false
3 changes: 3 additions & 0 deletions winpty/tests/test_ptyprocess.py
Original file line number Diff line number Diff line change
@@ -100,6 +100,9 @@ def test_readline(pty_fixture):
env = os.environ.copy()
env['foo'] = 'bar'
pty = pty_fixture(env=env)

# Ensure that the echo print has its own CRLF
pty.write('cls\r\n')
pty.write('echo %foo%\r\n')

data = ''